diff --git a/rct229/reports/ashrae9012019/ashrae901_2019_detail_report.py b/rct229/reports/ashrae9012019/ashrae901_2019_detail_report.py index ff7e7598c2..ae31ef1d4a 100644 --- a/rct229/reports/ashrae9012019/ashrae901_2019_detail_report.py +++ b/rct229/reports/ashrae9012019/ashrae901_2019_detail_report.py @@ -75,7 +75,10 @@ def output_node(output_result, output_eval_list, output_outcome_dict): output_outcome_dict[RCTOutcomeLabel.UNDETERMINED] += 1 if outcome_label == RCTOutcomeLabel.NOT_APPLICABLE: output_outcome_dict[RCTOutcomeLabel.NOT_APPLICABLE] += 1 - evaluation_outcome["data_group_id"] = output_result["id"] + if "data_group_id" in output_result: + evaluation_outcome["data_group_id"] = output_result["data_group_id"] + else: + evaluation_outcome["data_group_id"] = output_result["id"] evaluation_outcome["outcome"] = outcome_label evaluation_outcome["messages"] = ( output_result["message"] diff --git a/rct229/rule_engine/partial_rule_definition_test.py b/rct229/rule_engine/partial_rule_definition_test.py index 130dcd297e..cbd601dd2d 100644 --- a/rct229/rule_engine/partial_rule_definition_test.py +++ b/rct229/rule_engine/partial_rule_definition_test.py @@ -27,6 +27,7 @@ def test__rule_definition_base__evaluate__with_true_secondary_rule_check(): data={"outcome": True}, ) == { **DERIVED_RULE_outcome_base, + "data_group_id": 1, "result": "UNDETERMINED", "primary_rule": False, "message": "Manual check required message", @@ -39,6 +40,7 @@ def test__rule_definition_base__evaluate__with_false_secondary_rule_check(): data={"outcome": False}, ) == { **DERIVED_RULE_outcome_base, + "data_group_id": 1, "result": "NOT_APPLICABLE", "primary_rule": False, "message": "Not applicable message", diff --git a/rct229/rule_engine/rule_base.py b/rct229/rule_engine/rule_base.py index 54134632eb..4f20004a32 100644 --- a/rct229/rule_engine/rule_base.py +++ b/rct229/rule_engine/rule_base.py @@ -176,7 +176,19 @@ def evaluate(self, rmds, data={}): context_or_string = self.get_context(rmds, data) if isinstance(context_or_string, RuleSetModels): context = context_or_string - + for ruleset_model in context.get_ruleset_model_types(): + model_context = context[ruleset_model] + + if isinstance(model_context, dict): + if model_context.get("id"): + outcome["data_group_id"] = model_context["id"] + break + + elif isinstance(model_context, list): + for item in model_context: + if isinstance(item, dict) and item.get("id"): + outcome["data_group_id"] = item["id"] + break # Check the context for general validity context_validity_dict = self.check_context_validity(context, data) # If the context is valid, context_validity_dict will be the falsey {} @@ -184,12 +196,9 @@ def evaluate(self, rmds, data={}): try: # Check if rule is applicable if self.is_applicable(context, data): - # Get calculated values; these can be used by - # manual_check_required() or rule_check() and will - # be included in the output + # Get calculated values; these can be used by manual_check_required() or rule_check() and will be included in the output raw_calc_vals = self.get_calc_vals(context, data) - # Convert all CalcQ values to its q value for use in the - # remaining methods + # Convert all CalcQ values to its q value for use in the remaining methods calc_vals = calcq_to_q(raw_calc_vals) if calc_vals is not None: outcome["calc_vals"] = raw_calc_vals diff --git a/rct229/rule_engine/rule_base_test.py b/rct229/rule_engine/rule_base_test.py index 2b13fd7941..58ef3e4448 100644 --- a/rct229/rule_engine/rule_base_test.py +++ b/rct229/rule_engine/rule_base_test.py @@ -121,6 +121,7 @@ def test__rule_definition_base__evaluate__with_missing_baseline(): def test__rule_definition_base__evaluate__with_false_is_applicable(): assert DERIVED_RULE.evaluate(RMDS_WITH_MATCHING_USER_AND_BASELINE, data="NA") == { **BASE_RULE_1_OUTCOME_BASE, + "data_group_id": 1, "result": "NOT_APPLICABLE", "message": "Not applicable message", } @@ -131,6 +132,7 @@ def test__rule_definition_base__evaluate__with_true_manual_check_required(): RMDS_WITH_MATCHING_USER_AND_BASELINE, data="MANUAL_CHECK_REQUIRED" ) == { **DERIVED_RULE_outcome_base, + "data_group_id": 1, "result": "UNDETERMINED", "message": "Manual check required message", } @@ -139,6 +141,7 @@ def test__rule_definition_base__evaluate__with_true_manual_check_required(): def test__rule_definition_base__evaluate__with_true_rule_check(): assert DERIVED_RULE.evaluate(RMDS_WITH_MATCHING_USER_AND_BASELINE, data=True) == { **DERIVED_RULE_outcome_base, + "data_group_id": 1, "result": "PASSED", } @@ -146,6 +149,7 @@ def test__rule_definition_base__evaluate__with_true_rule_check(): def test__rule_definition_base__evaluate__with_true_rule_check(): assert DERIVED_RULE.evaluate(RMDS_WITH_MATCHING_USER_AND_BASELINE, data=False) == { **DERIVED_RULE_outcome_base, + "data_group_id": 1, "result": "FAILED", } diff --git a/test/integrated_tests/Sample 1/Sample 1.zip b/test/integrated_tests/Sample 1/Sample 1.zip new file mode 100644 index 0000000000..2eb0aef8d3 Binary files /dev/null and b/test/integrated_tests/Sample 1/Sample 1.zip differ diff --git a/test/integrated_tests/Sample 1/expected_outcomes.json b/test/integrated_tests/Sample 1/expected_outcomes.json new file mode 100644 index 0000000000..73fc3bde77 --- /dev/null +++ b/test/integrated_tests/Sample 1/expected_outcomes.json @@ -0,0 +1,34101 @@ +{ + "1-1": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `total_area_weighted_building_performance_factor` value must exist." + } + }, + "1-2": { + "Sample 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index` value must exist." + } + }, + "1-3": { + "Sample 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index_target` value must exist." + } + }, + "1-4": { + "Sample 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index_target` value must exist." + } + }, + "1-5": { + "Sample 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Ruleset expects exactly one 'total_proposed_building_energy_cost_including_renewable_energy' value to be used in the project." + } + }, + "1-6": { + "Sample 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_renewable", + "value": "False" + } + ], + "messages": "" + } + }, + "1-7": { + "Sample 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 1 Automated Review in index context does not match the one Sample 1 Automated Review - Proposed - Proposed in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].terminals[0]: data object MF1 - Multifamily Zn 1 MainTerminal in index context does not match the one MF1 - Multifamily Zn 1 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].terminals[0]: data object MF1 - Multifamily Zn 2 MainTerminal in index context does not match the one MF1 - Multifamily Zn 2 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].terminals[0]: data object MF1 - Multifamily Zn 3 MainTerminal in index context does not match the one MF1 - Multifamily Zn 3 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[6].terminals[0]: data object MF1 - Multifamily Zn 4 MainTerminal in index context does not match the one MF1 - Multifamily Zn 4 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].terminals[0]: data object MF1 - Multifamily Zn 5 MainTerminal in index context does not match the one MF1 - Multifamily Zn 5 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].terminals[0]: data object MF1 - Multifamily Zn 6 MainTerminal in index context does not match the one MF1 - Multifamily Zn 6 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[12].terminals[0]: data object MF2 - Multifamily Zn 1 MainTerminal in index context does not match the one MF2 - Multifamily Zn 1 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[13].terminals[0]: data object MF2 - Multifamily Zn 2 MainTerminal in index context does not match the one MF2 - Multifamily Zn 2 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[14].terminals[0]: data object MF2 - Multifamily Zn 3 MainTerminal in index context does not match the one MF2 - Multifamily Zn 3 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].terminals[0]: data object MF2 - Multifamily Zn 4 MainTerminal in index context does not match the one MF2 - Multifamily Zn 4 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[16].terminals[0]: data object MF2 - Multifamily Zn 5 MainTerminal in index context does not match the one MF2 - Multifamily Zn 5 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[17].terminals[0]: data object MF2 - Multifamily Zn 6 MainTerminal in index context does not match the one MF2 - Multifamily Zn 6 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[21].terminals[0]: data object MF3 - Multifamily Zn 1 MainTerminal in index context does not match the one MF3 - Multifamily Zn 1 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[22].terminals[0]: data object MF3 - Multifamily Zn 2 MainTerminal in index context does not match the one MF3 - Multifamily Zn 2 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[23].terminals[0]: data object MF3 - Multifamily Zn 3 MainTerminal in index context does not match the one MF3 - Multifamily Zn 3 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[24].terminals[0]: data object MF3 - Multifamily Zn 4 MainTerminal in index context does not match the one MF3 - Multifamily Zn 4 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[25].terminals[0]: data object MF3 - Multifamily Zn 5 MainTerminal in index context does not match the one MF3 - Multifamily Zn 5 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[26].terminals[0]: data object MF3 - Multifamily Zn 6 MainTerminal in index context does not match the one MF3 - Multifamily Zn 6 DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object HVAC System 26 in index context does not match the one ERV 1-4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object HVAC System 26 FanSys in index context does not match the one ERV 1-4 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object HVAC System 26 SupplyFan in index context does not match the one ERV 1-4 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].schedules[0]: data object All ON in index context does not match the one Always On Fraction Yr in compare context', 'path: $.ruleset_model_descriptions[0].schedules[1]: data object Always On Fraction Yr in index context does not match the one Apt Ltg Yr in compare context', 'path: $.ruleset_model_descriptions[0].schedules[2]: data object Apt Ltg Yr in index context does not match the one Cust 1 Elec Season Sched in compare context', 'path: $.ruleset_model_descriptions[0].schedules[3]: data object Cust 1 Elec Season Sched in index context does not match the one Custom Gas Season Sched in compare context', 'path: $.ruleset_model_descriptions[0].schedules[4]: data object Custom Gas Season Sched in index context does not match the one DHW Eqp NRes Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[5]: data object DHW Eqp NRes Sch in index context does not match the one Dirt Depre Windows in compare context', 'path: $.ruleset_model_descriptions[0].schedules[6]: data object Dirt Depre Windows in index context does not match the one EPA T24 EQP WD APT Yr in compare context', 'path: $.ruleset_model_descriptions[0].schedules[7]: data object EPA T24 EQP WD APT Yr in index context does not match the one EPA T24 EQP WD CA Yr in compare context', 'path: $.ruleset_model_descriptions[0].schedules[8]: data object EPA T24 EQP WD CA Yr in index context does not match the one Ground Temperature Schedule in compare context', 'path: $.ruleset_model_descriptions[0].schedules[8].sequence_type: index context data: HOURLY does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].schedules[9]: data object Ground Temperature Schedule in index context does not match the one HW Lp Heat Reset Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[10]: data object HW Lp Heat Reset Sch in index context does not match the one Hourly Report Schedule in compare context', 'path: $.ruleset_model_descriptions[0].schedules[11]: data object Hourly Report Schedule in index context does not match the one MF DHW Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[12]: data object MF DHW Sch in index context does not match the one MF1Bldg InsLt Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[13]: data object MF1Bldg InsLt Sch in index context does not match the one MF1Bldg Misc Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[14]: data object MF1Bldg Misc Sch in index context does not match the one MF1Bldg Occup Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[15]: data object MF1Bldg Occup Sch in index context does not match the one RTBldg InsLt Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[16]: data object RTBldg InsLt Sch in index context does not match the one RTBldg Misc Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[17]: data object RTBldg Misc Sch in index context does not match the one RTBldg Occup Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[18]: data object RTBldg Occup Sch in index context does not match the one S1 Sys1 (PSZ) Cool Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[19]: data object S1 Sys1 (PSZ) Cool Sch in index context does not match the one S1 Sys1 (PSZ) Fan Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[20]: data object S1 Sys1 (PSZ) Fan Sch in index context does not match the one S1 Sys1 (PSZ) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[21]: data object S1 Sys1 (PSZ) Heat Sch in index context does not match the one S3 Sys3 (UHT) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[22]: data object S3 Sys3 (UHT) Heat Sch in index context does not match the one S4 Sys4 (PSZ) Cool Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[23]: data object S4 Sys4 (PSZ) Cool Sch in index context does not match the one S4 Sys4 (PSZ) Fan Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[24]: data object S4 Sys4 (PSZ) Fan Sch in index context does not match the one S4 Sys4 (PSZ) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[25]: data object S4 Sys4 (PSZ) Heat Sch in index context does not match the one S4 Sys4 (PSZ) MinOA Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[26]: data object S4 Sys4 (PSZ) MinOA Sch in index context does not match the one UH Fan Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[27]: data object UH Fan Ann in index context does not match the one ZG0-S1 (PSZ) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[28]: data object ZG0-S1 (PSZ) C-Inf Sch in index context does not match the one ZG0-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[29]: data object ZG0-S1 (PSZ) P-Inf Sch in index context does not match the one ZG3-S1 (PSZ) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[30]: data object ZG3-S1 (PSZ) C-Inf Sch in index context does not match the one ZG3-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[31]: data object ZG3-S1 (PSZ) P-Inf Sch in index context does not match the one ZG4-S1 (UHT) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].materials[13]: data object Polyisocyanurate 1in_0.177 in index context does not match the one Polyisocyanurate 1in_0.47 in compare context']" + } + ], + "messages": "path: $.ruleset_model_descriptions[0]: data object Sample 1 Automated Review in index context does not match the one Sample 1 Automated Review - Proposed - Proposed in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].terminals[0]: data object MF1 - Multifamily Zn 1 MainTerminal in index context does not match the one MF1 - Multifamily Zn 1 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].terminals[0]: data object MF1 - Multifamily Zn 2 MainTerminal in index context does not match the one MF1 - Multifamily Zn 2 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].terminals[0]: data object MF1 - Multifamily Zn 3 MainTerminal in index context does not match the one MF1 - Multifamily Zn 3 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[6].terminals[0]: data object MF1 - Multifamily Zn 4 MainTerminal in index context does not match the one MF1 - Multifamily Zn 4 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].terminals[0]: data object MF1 - Multifamily Zn 5 MainTerminal in index context does not match the one MF1 - Multifamily Zn 5 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].terminals[0]: data object MF1 - Multifamily Zn 6 MainTerminal in index context does not match the one MF1 - Multifamily Zn 6 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[12].terminals[0]: data object MF2 - Multifamily Zn 1 MainTerminal in index context does not match the one MF2 - Multifamily Zn 1 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[13].terminals[0]: data object MF2 - Multifamily Zn 2 MainTerminal in index context does not match the one MF2 - Multifamily Zn 2 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[14].terminals[0]: data object MF2 - Multifamily Zn 3 MainTerminal in index context does not match the one MF2 - Multifamily Zn 3 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].terminals[0]: data object MF2 - Multifamily Zn 4 MainTerminal in index context does not match the one MF2 - Multifamily Zn 4 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[16].terminals[0]: data object MF2 - Multifamily Zn 5 MainTerminal in index context does not match the one MF2 - Multifamily Zn 5 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[17].terminals[0]: data object MF2 - Multifamily Zn 6 MainTerminal in index context does not match the one MF2 - Multifamily Zn 6 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[21].terminals[0]: data object MF3 - Multifamily Zn 1 MainTerminal in index context does not match the one MF3 - Multifamily Zn 1 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[22].terminals[0]: data object MF3 - Multifamily Zn 2 MainTerminal in index context does not match the one MF3 - Multifamily Zn 2 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[23].terminals[0]: data object MF3 - Multifamily Zn 3 MainTerminal in index context does not match the one MF3 - Multifamily Zn 3 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[24].terminals[0]: data object MF3 - Multifamily Zn 4 MainTerminal in index context does not match the one MF3 - Multifamily Zn 4 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[25].terminals[0]: data object MF3 - Multifamily Zn 5 MainTerminal in index context does not match the one MF3 - Multifamily Zn 5 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[26].terminals[0]: data object MF3 - Multifamily Zn 6 MainTerminal in index context does not match the one MF3 - Multifamily Zn 6 DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object HVAC System 26 in index context does not match the one ERV 1-4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object HVAC System 26 FanSys in index context does not match the one ERV 1-4 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object HVAC System 26 SupplyFan in index context does not match the one ERV 1-4 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].schedules[0]: data object All ON in index context does not match the one Always On Fraction Yr in compare context; path: $.ruleset_model_descriptions[0].schedules[1]: data object Always On Fraction Yr in index context does not match the one Apt Ltg Yr in compare context; path: $.ruleset_model_descriptions[0].schedules[2]: data object Apt Ltg Yr in index context does not match the one Cust 1 Elec Season Sched in compare context; path: $.ruleset_model_descriptions[0].schedules[3]: data object Cust 1 Elec Season Sched in index context does not match the one Custom Gas Season Sched in compare context; path: $.ruleset_model_descriptions[0].schedules[4]: data object Custom Gas Season Sched in index context does not match the one DHW Eqp NRes Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[5]: data object DHW Eqp NRes Sch in index context does not match the one Dirt Depre Windows in compare context; path: $.ruleset_model_descriptions[0].schedules[6]: data object Dirt Depre Windows in index context does not match the one EPA T24 EQP WD APT Yr in compare context; path: $.ruleset_model_descriptions[0].schedules[7]: data object EPA T24 EQP WD APT Yr in index context does not match the one EPA T24 EQP WD CA Yr in compare context; path: $.ruleset_model_descriptions[0].schedules[8]: data object EPA T24 EQP WD CA Yr in index context does not match the one Ground Temperature Schedule in compare context; path: $.ruleset_model_descriptions[0].schedules[8].sequence_type: index context data: HOURLY does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].schedules[9]: data object Ground Temperature Schedule in index context does not match the one HW Lp Heat Reset Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[10]: data object HW Lp Heat Reset Sch in index context does not match the one Hourly Report Schedule in compare context; path: $.ruleset_model_descriptions[0].schedules[11]: data object Hourly Report Schedule in index context does not match the one MF DHW Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[12]: data object MF DHW Sch in index context does not match the one MF1Bldg InsLt Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[13]: data object MF1Bldg InsLt Sch in index context does not match the one MF1Bldg Misc Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[14]: data object MF1Bldg Misc Sch in index context does not match the one MF1Bldg Occup Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[15]: data object MF1Bldg Occup Sch in index context does not match the one RTBldg InsLt Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[16]: data object RTBldg InsLt Sch in index context does not match the one RTBldg Misc Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[17]: data object RTBldg Misc Sch in index context does not match the one RTBldg Occup Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[18]: data object RTBldg Occup Sch in index context does not match the one S1 Sys1 (PSZ) Cool Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[19]: data object S1 Sys1 (PSZ) Cool Sch in index context does not match the one S1 Sys1 (PSZ) Fan Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[20]: data object S1 Sys1 (PSZ) Fan Sch in index context does not match the one S1 Sys1 (PSZ) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[21]: data object S1 Sys1 (PSZ) Heat Sch in index context does not match the one S3 Sys3 (UHT) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[22]: data object S3 Sys3 (UHT) Heat Sch in index context does not match the one S4 Sys4 (PSZ) Cool Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[23]: data object S4 Sys4 (PSZ) Cool Sch in index context does not match the one S4 Sys4 (PSZ) Fan Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[24]: data object S4 Sys4 (PSZ) Fan Sch in index context does not match the one S4 Sys4 (PSZ) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[25]: data object S4 Sys4 (PSZ) Heat Sch in index context does not match the one S4 Sys4 (PSZ) MinOA Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[26]: data object S4 Sys4 (PSZ) MinOA Sch in index context does not match the one UH Fan Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[27]: data object UH Fan Ann in index context does not match the one ZG0-S1 (PSZ) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[28]: data object ZG0-S1 (PSZ) C-Inf Sch in index context does not match the one ZG0-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[29]: data object ZG0-S1 (PSZ) P-Inf Sch in index context does not match the one ZG3-S1 (PSZ) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[30]: data object ZG3-S1 (PSZ) C-Inf Sch in index context does not match the one ZG3-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[31]: data object ZG3-S1 (PSZ) P-Inf Sch in index context does not match the one ZG4-S1 (UHT) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].materials[13]: data object Polyisocyanurate 1in_0.177 in index context does not match the one Polyisocyanurate 1in_0.47 in compare context" + } + }, + "1-8": { + "Sample 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 1 Automated Review - Proposed - Proposed in index context does not match the one Sample 1 Automated Review - Proposed in compare context']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object Sample 1 Automated Review - Proposed - Proposed in index context does not match the one Sample 1 Automated Review - Proposed in compare context" + ] + } + }, + "1-9": { + "Sample 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "4-1": { + "MF1 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-2": { + "MF1 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-11": { + "MF1 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "schedule_mismatch", + "value": "False" + }, + { + "variable": "baseline_served_by_multizone", + "value": "False" + }, + { + "variable": "proposed_served_by_multizone", + "value": "False" + }, + { + "variable": "system_type_match_baseline_proposed", + "value": "True" + }, + { + "variable": "hvac_type_check", + "value": "False" + } + ], + "messages": "" + } + }, + "4-14": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-1": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "no_of_rmds", + "value": "3" + }, + { + "variable": "no_of_output_instance", + "value": "2" + }, + { + "variable": "rotation_expected_b", + "value": "True" + }, + { + "variable": "has_baseline_0", + "value": "True" + }, + { + "variable": "has_baseline_90", + "value": "False" + }, + { + "variable": "has_baseline_180", + "value": "False" + }, + { + "variable": "has_baseline_270", + "value": "False" + }, + { + "variable": "has_proposed", + "value": "True" + }, + { + "variable": "has_user", + "value": "True" + }, + { + "variable": "has_baseline_0_output", + "value": "True" + }, + { + "variable": "has_baseline_90_output", + "value": "False" + }, + { + "variable": "has_baseline_180_output", + "value": "False" + }, + { + "variable": "has_baseline_270_output", + "value": "False" + }, + { + "variable": "has_proposed_output", + "value": "True" + }, + { + "variable": "has_user_output", + "value": "True" + } + ], + "messages": "Fail unless Table G3.1#5a exception #2 is applicable and it can be demonstrated that the building orientation is dictated by site considerations." + } + }, + "5-2": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surfaces_casting_shade_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-3": { + "MF1Ceiling (G.WSW4.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (G.ESE5.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (G.E6.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (G.ENE7.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (G.WNW8.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (G.W9.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.WSW13.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.ESE14.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.E15.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.ENE16.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.WNW17.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.W18.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Roof (T.WSW22.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.ESE23.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.E24.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.ENE25.E40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.WNW26.E43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.W27.E45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Ceiling (G.C1.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.C10.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Roof (T.C19.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Ceiling (G.N2.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (G.S3.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.N11.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Ceiling (M.S12.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Roof (T.N20.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.S21.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-4": { + "MF1Roof (T.WSW22.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.ESE23.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.E24.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.ENE25.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.WNW26.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.W27.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.C19.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.N20.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MF1Roof (T.S21.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0628218382560262", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-5": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-6": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-7": { + "MF1South Wall (G.WSW4.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (G.WSW4.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (G.WSW4.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (G.ESE5.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (G.ESE5.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (G.ESE5.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (G.E6.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (G.E6.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (G.ENE7.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (G.ENE7.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1South Wall (G.ENE7.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (G.WNW8.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (G.WNW8.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1South Wall (G.WNW8.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (G.W9.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (G.W9.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (M.WSW13.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (M.WSW13.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (M.WSW13.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (M.ESE14.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (M.ESE14.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (M.ESE14.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (M.E15.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (M.E15.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (M.ENE16.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (M.ENE16.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1South Wall (M.ENE16.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (M.WNW17.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (M.WNW17.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1South Wall (M.WNW17.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (M.W18.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (M.W18.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (T.WSW22.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (T.WSW22.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (T.WSW22.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (T.ESE23.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (T.ESE23.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (T.ESE23.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (T.E24.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (T.E24.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (T.ENE25.E38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1North Wall (T.ENE25.E39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1South Wall (T.ENE25.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (T.WNW26.E41)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (T.WNW26.E42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1South Wall (T.WNW26.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (T.W27.E44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (T.W27.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (G.C1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (G.C1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (G.C1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (G.C1.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (G.C1.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (G.C1.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (M.C10.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (M.C10.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (M.C10.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (M.C10.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (M.C10.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (M.C10.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (T.C19.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (T.C19.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (T.C19.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (T.C19.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (T.C19.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (T.C19.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (G.N2.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (G.N2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (G.N2.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (G.S3.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (G.S3.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (G.S3.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (M.N11.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (M.N11.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (M.N11.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (M.S12.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (M.S12.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (M.S12.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1North Wall (T.N20.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1West Wall (T.N20.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1East Wall (T.N20.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1South Wall (T.S21.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1East Wall (T.S21.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1West Wall (T.S21.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "RTSouth Wall (G.S3.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "RTNorth Wall (G.S3.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "RTEast Wall (G.E1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "RTWest Wall (G.E1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "RTSW Wall (G.E1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "RTWest Wall (G.WNW2.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "RTNorth Wall (G.WNW2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "RTSE Wall (G.WNW2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "RTEast Wall (G.WNW2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "RTSouth Wall (G.WNW2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "RTSE Wall (G.WNW2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-8": { + "MF1South Wall (G.WSW4.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.WSW4.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (G.ESE5.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.ESE5.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.E6.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.ENE7.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (G.ENE7.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (G.WNW8.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.WNW8.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.W9.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (M.WSW13.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.WSW13.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (M.ESE14.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.ESE14.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.E15.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.ENE16.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (M.ENE16.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (M.WNW17.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.WNW17.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.W18.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (T.WSW22.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.WSW22.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (T.ESE23.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.ESE23.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.E24.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.ENE25.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (T.ENE25.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (T.WNW26.E41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.WNW26.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.W27.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (G.N2.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (G.S3.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (M.N11.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (M.S12.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (T.N20.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (T.S21.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTSouth Wall (G.S3.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTEast Wall (G.E1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTWest Wall (G.WNW2.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTNorth Wall (G.WNW2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.1241243749730803", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-9": { + "MF1Flr (G.WSW4.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.ESE5.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.E6.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.ENE7.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.WNW8.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.W9.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.WSW13.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.ESE14.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.E15.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.ENE16.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.WNW17.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.W18.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.WSW22.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.ESE23.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.E24.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.ENE25.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.WNW26.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.W27.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.C1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.C10.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.C19.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.N2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (G.S3.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.N11.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (M.S12.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.N20.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MF1Flr (T.S21.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-10": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-11": { + "RTFlr (G.S3.U3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "RTFlr (G.E1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "RTFlr (G.WNW2.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "RTFlr (G.C4.U4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-12": { + "RTFlr (G.S3.U3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.7301432530120484", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "RTFlr (G.E1.U1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.7301432530120484", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "RTFlr (G.WNW2.U2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.7301432530120484", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "RTFlr (G.C4.U4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.7301432530120484", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-13": { + "MF1Flr (G.WSW4.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (G.WSW4.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.WSW4.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.ESE5.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (G.ESE5.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.ESE5.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.E6.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.E6.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.E6.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.ENE7.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (G.ENE7.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.ENE7.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.WNW8.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (G.WNW8.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.WNW8.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.W9.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.W9.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.W9.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.WSW13.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (M.WSW13.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.WSW13.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.ESE14.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (M.ESE14.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.ESE14.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.E15.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.E15.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.E15.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.ENE16.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (M.ENE16.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.ENE16.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.WNW17.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (M.WNW17.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.WNW17.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.W18.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.W18.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.W18.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.WSW22.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (T.WSW22.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.ESE23.I84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (T.ESE23.I85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.E24.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.E24.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.ENE25.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (T.ENE25.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.WNW26.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (T.WNW26.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.W27.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.W27.I93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.C1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (G.C1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.C1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.C1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (G.C1.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.C1.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.C1.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.C1.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.C10.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (M.C10.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.C10.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.C10.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (M.C10.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.C10.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.C10.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.C10.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.C19.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Wall (T.C19.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.C19.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.C19.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Wall (T.C19.I73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.C19.I74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.C19.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.N2.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.N2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.N2.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.N2.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (G.S3.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (G.S3.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (G.S3.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (G.S3.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.N11.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.N11.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.N11.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.N11.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (M.S12.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (M.S12.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (M.S12.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Ceiling (M.S12.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.N20.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.N20.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.N20.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1Flr (T.S21.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3067000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Wall (T.S21.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Wall (T.S21.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTNorth Wall (G.S3.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTWest Wall (G.E1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTSW Wall (G.E1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTSE Wall (G.WNW2.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTEast Wall (G.WNW2.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTSouth Wall (G.WNW2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTSE Wall (G.WNW2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "2.700000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-14": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:MULTIFAMILY missing:is_all_new; id:RETAIL missing:is_all_new" + } + } + }, + "5-15": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MULTIFAMILY missing:is_all_new; id:RETAIL missing:is_all_new", + "BASELINE_0_MISSING_DATA": "id:MULTIFAMILY missing:is_all_new; id:RETAIL missing:is_all_new" + } + } + }, + "5-16": { + "MF1South Wall (G.WSW4.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (G.WSW4.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (G.ESE5.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (G.ESE5.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (G.E6.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (G.ENE7.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (G.ENE7.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (G.WNW8.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (G.WNW8.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (G.W9.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (M.WSW13.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (M.WSW13.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (M.ESE14.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (M.ESE14.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (M.E15.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (M.ENE16.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (M.ENE16.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (M.WNW17.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (M.WNW17.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (M.W18.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (T.WSW22.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (T.WSW22.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (T.ESE23.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (T.ESE23.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "96.25017500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (T.E24.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1East Wall (T.ENE25.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (T.ENE25.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (T.WNW26.E41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.500075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (T.WNW26.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "95.37509999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1West Wall (T.W27.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "188.374875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (G.N2.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (G.S3.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (M.N11.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (M.S12.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1North Wall (T.N20.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "MF1South Wall (T.S21.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.750025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "RTSouth Wall (G.S3.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "RTEast Wall (G.E1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1367.9949599999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1367.9949599999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "RTWest Wall (G.WNW2.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + }, + "RTNorth Wall (G.WNW2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "4480.496909999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "4480.496909999999", + "unit": "ft2" + } + ], + "messages": "" + } + }, + "5-17": { + "MF1 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-18": { + "MF1South Win (G.WSW4.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (G.WSW4.E3.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (G.WSW4.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (G.WSW4.E4.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (G.ESE5.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (G.ESE5.E5.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (G.ESE5.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (G.ESE5.E6.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (G.E6.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (G.E6.E7.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (G.ENE7.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (G.ENE7.E8.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (G.ENE7.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (G.ENE7.E9.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (G.WNW8.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (G.WNW8.E10.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (G.WNW8.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (G.WNW8.E11.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (G.W9.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (G.W9.E12.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (M.WSW13.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (M.WSW13.E15.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (M.WSW13.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (M.WSW13.E16.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (M.ESE14.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (M.ESE14.E17.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (M.ESE14.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (M.ESE14.E18.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (M.E15.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (M.E15.E19.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (M.ENE16.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (M.ENE16.E20.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (M.ENE16.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (M.ENE16.E21.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (M.WNW17.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (M.WNW17.E22.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (M.WNW17.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (M.WNW17.E23.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (M.W18.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (M.W18.E24.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (T.WSW22.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (T.WSW22.E30.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (T.WSW22.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (T.WSW22.E31.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (T.ESE23.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (T.ESE23.E33.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (T.ESE23.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (T.ESE23.E34.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (T.E24.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (T.E24.E36.W1) missing:dynamic_glazing_type" + } + }, + "MF1East Win (T.ENE25.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (T.ENE25.E38.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (T.ENE25.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (T.ENE25.E39.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (T.WNW26.E41.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (T.WNW26.E41.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (T.WNW26.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (T.WNW26.E42.W1) missing:dynamic_glazing_type" + } + }, + "MF1West Win (T.W27.E44.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (T.W27.E44.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (G.N2.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (G.N2.E1.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (G.S3.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (G.S3.E2.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (M.N11.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (M.N11.E13.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (M.S12.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (M.S12.E14.W1) missing:dynamic_glazing_type" + } + }, + "MF1North Win (T.N20.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (T.N20.E26.W1) missing:dynamic_glazing_type" + } + }, + "MF1South Win (T.S21.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (T.S21.E28.W1) missing:dynamic_glazing_type" + } + }, + "RTEast Win (G.E1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:RTEast Win (G.E1.E1.W1) missing:dynamic_glazing_type" + } + } + }, + "5-19": { + "MF1South Win (G.WSW4.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (G.WSW4.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (G.ESE5.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (G.ESE5.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (G.E6.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (G.ENE7.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (G.ENE7.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (G.WNW8.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (G.WNW8.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (G.W9.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (M.WSW13.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (M.WSW13.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (M.ESE14.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (M.ESE14.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (M.E15.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (M.ENE16.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (M.ENE16.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (M.WNW17.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (M.WNW17.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (M.W18.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (T.WSW22.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (T.WSW22.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (T.ESE23.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (T.ESE23.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (T.E24.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1East Win (T.ENE25.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (T.ENE25.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (T.WNW26.E41.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (T.WNW26.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1West Win (T.W27.E44.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (G.N2.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (G.S3.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (M.N11.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (M.S12.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1North Win (T.N20.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MF1South Win (T.S21.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079131", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "RTEast Win (G.E1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5700134236079133", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-20": { + "MF1South Win (G.WSW4.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (G.WSW4.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (G.ESE5.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (G.ESE5.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (G.E6.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (G.ENE7.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (G.ENE7.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (G.WNW8.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (G.WNW8.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (G.W9.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (M.WSW13.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (M.WSW13.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (M.ESE14.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (M.ESE14.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (M.E15.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (M.ENE16.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (M.ENE16.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (M.WNW17.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (M.WNW17.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (M.W18.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (T.WSW22.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (T.WSW22.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (T.ESE23.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (T.ESE23.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (T.E24.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1East Win (T.ENE25.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (T.ENE25.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (T.WNW26.E41.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (T.WNW26.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1West Win (T.W27.E44.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (G.N2.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (G.S3.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (M.N11.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (M.S12.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1North Win (T.N20.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MF1South Win (T.S21.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "RTEast Win (G.E1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.38982608695652177" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + } + }, + "5-21": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-22": { + "MF1South Win (G.WSW4.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (G.WSW4.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (G.ESE5.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (G.ESE5.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (G.E6.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (G.ENE7.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (G.ENE7.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (G.WNW8.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (G.WNW8.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (G.W9.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (M.WSW13.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (M.WSW13.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (M.ESE14.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (M.ESE14.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (M.E15.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (M.ENE16.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (M.ENE16.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (M.WNW17.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (M.WNW17.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (M.W18.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (T.WSW22.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (T.WSW22.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (T.ESE23.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (T.ESE23.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (T.E24.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1East Win (T.ENE25.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (T.ENE25.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (T.WNW26.E41.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (T.WNW26.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1West Win (T.W27.E44.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (G.N2.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (G.S3.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (M.N11.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (M.S12.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1North Win (T.N20.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MF1South Win (T.S21.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "RTEast Win (G.E1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + } + }, + "5-23": { + "MF1South Win (G.WSW4.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (G.WSW4.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (G.WSW4.E3.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (G.WSW4.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (G.WSW4.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (G.WSW4.E4.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (G.ESE5.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (G.ESE5.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (G.ESE5.E5.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (G.ESE5.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (G.ESE5.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (G.ESE5.E6.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (G.E6.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (G.E6.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (G.E6.E7.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (G.ENE7.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (G.ENE7.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (G.ENE7.E8.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (G.ENE7.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (G.ENE7.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (G.ENE7.E9.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (G.WNW8.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (G.WNW8.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (G.WNW8.E10.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (G.WNW8.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (G.WNW8.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (G.WNW8.E11.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (G.W9.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (G.W9.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (G.W9.E12.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (M.WSW13.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (M.WSW13.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (M.WSW13.E15.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (M.WSW13.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (M.WSW13.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (M.WSW13.E16.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (M.ESE14.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (M.ESE14.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (M.ESE14.E17.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (M.ESE14.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (M.ESE14.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (M.ESE14.E18.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (M.E15.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (M.E15.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (M.E15.E19.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (M.ENE16.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (M.ENE16.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (M.ENE16.E20.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (M.ENE16.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (M.ENE16.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (M.ENE16.E21.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (M.WNW17.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (M.WNW17.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (M.WNW17.E22.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (M.WNW17.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (M.WNW17.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (M.WNW17.E23.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (M.W18.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (M.W18.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (M.W18.E24.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (T.WSW22.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (T.WSW22.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (T.WSW22.E30.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (T.WSW22.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (T.WSW22.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (T.WSW22.E31.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (T.ESE23.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (T.ESE23.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (T.ESE23.E33.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (T.ESE23.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (T.ESE23.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (T.ESE23.E34.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (T.E24.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (T.E24.E36.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (T.E24.E36.W1) missing:has_manual_interior_shades" + } + }, + "MF1East Win (T.ENE25.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1East Win (T.ENE25.E38.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1East Win (T.ENE25.E38.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (T.ENE25.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (T.ENE25.E39.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (T.ENE25.E39.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (T.WNW26.E41.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (T.WNW26.E41.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (T.WNW26.E41.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (T.WNW26.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (T.WNW26.E42.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (T.WNW26.E42.W1) missing:has_manual_interior_shades" + } + }, + "MF1West Win (T.W27.E44.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1West Win (T.W27.E44.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1West Win (T.W27.E44.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (G.N2.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (G.N2.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (G.N2.E1.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (G.S3.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (G.S3.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (G.S3.E2.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (M.N11.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (M.N11.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (M.N11.E13.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (M.S12.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (M.S12.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (M.S12.E14.W1) missing:has_manual_interior_shades" + } + }, + "MF1North Win (T.N20.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1North Win (T.N20.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1North Win (T.N20.E26.W1) missing:has_manual_interior_shades" + } + }, + "MF1South Win (T.S21.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MF1South Win (T.S21.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MF1South Win (T.S21.E28.W1) missing:has_manual_interior_shades" + } + }, + "RTEast Win (G.E1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:RTEast Win (G.E1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:RTEast Win (G.E1.E1.W1) missing:has_manual_interior_shades" + } + } + }, + "5-24": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_skylight_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_b", + "value": "8436.000000000002", + "unit": "ft2" + }, + { + "variable": "total_skylight_area_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_p", + "value": "8436.000000000002", + "unit": "ft2" + }, + { + "variable": "skylight_roof_ratio_b", + "value": "0.0 dimensionless" + }, + { + "variable": "skylight_roof_ratio_p", + "value": "0.0 dimensionless" + } + ], + "messages": "" + } + }, + "5-25": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-26": { + "MULTIFAMILY": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "RETAIL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-27": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-28": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-29": { + "MF1Roof (T.WSW22.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.ESE23.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.E24.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.ENE25.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.WNW26.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.W27.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.C19.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.N20.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.S21.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-30": { + "MF1Roof (T.WSW22.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.ESE23.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.E24.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.ENE25.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.WNW26.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.W27.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.C19.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.N20.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MF1Roof (T.S21.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-31": { + "MF1Roof (T.WSW22.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.ESE23.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.E24.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.ENE25.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.WNW26.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.W27.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.C19.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.N20.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MF1Roof (T.S21.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + } + }, + "5-32": { + "MF1Roof (T.WSW22.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.ESE23.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.E24.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.ENE25.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.WNW26.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.W27.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.C19.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.N20.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MF1Roof (T.S21.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-33": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "failing_infiltration_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-34": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "failing_infiltration_zone_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-35": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "3980.94846292", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "3981.264", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "35547.0", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "1.0000000000000002 cfm/ft2" + }, + { + "variable": "target_air_leakage_rate_75pa_b", + "value": "35547.0", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "5-36": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-37": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "2389.07523776", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "2388.7584", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "35547.0", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "0.6 cfm / foot ** 2" + }, + { + "variable": "building_total_measured_air_leakage_rate", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "target_air_leakage_rate_75pa_p", + "value": "21328.2", + "unit": "cfm" + }, + { + "variable": "empty_measured_air_leakage_rate_flow_flag", + "value": "True" + } + ], + "messages": "" + } + }, + "5-38": { + "Sample 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "ground_temperature_schedule", + "value": "Ground Temperature Schedule" + } + ], + "messages": "It cannot be determined if the ground temperature schedule for the project is representative of the project climate." + } + }, + "5-39": { + "MF1South Wall (G.WSW4.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (G.WSW4.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (G.ESE5.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (G.ESE5.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (G.E6.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (G.ENE7.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (G.ENE7.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (G.WNW8.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (G.WNW8.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (G.W9.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (M.WSW13.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (M.WSW13.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (M.ESE14.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (M.ESE14.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (M.E15.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (M.ENE16.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (M.ENE16.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (M.WNW17.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (M.WNW17.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (M.W18.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (T.WSW22.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (T.WSW22.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (T.ESE23.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (T.ESE23.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (T.E24.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1East Wall (T.ENE25.E38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (T.ENE25.E39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (T.WNW26.E41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (T.WNW26.E42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1West Wall (T.W27.E44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (G.N2.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (G.S3.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (M.N11.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (M.S12.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1North Wall (T.N20.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MF1South Wall (T.S21.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "RTEast Wall (G.E1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-40": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "6-1": { + "MULTIFAMILY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "allowable_LPD_BAM", + "value": "0.7000000000000001", + "unit": "W/ft2" + }, + { + "variable": "building_segment_design_lighting_wattage", + "value": "14309.814375000009", + "unit": "W" + }, + { + "variable": "check_BAM_flag", + "value": "False" + }, + { + "variable": "total_building_segment_area_p", + "value": "25915.5", + "unit": "ft2" + }, + { + "variable": "allowable_lighting_wattage_SBS", + "value": "26069.445000000018", + "unit": "W" + } + ], + "messages": "Project passes based on building area method. Verify if project uses building area method." + }, + "RETAIL": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "allowable_LPD_BAM", + "value": "1.5000000000000004", + "unit": "W/ft2" + }, + { + "variable": "building_segment_design_lighting_wattage", + "value": "8298.210000000003", + "unit": "W" + }, + { + "variable": "check_BAM_flag", + "value": "False" + }, + { + "variable": "total_building_segment_area_p", + "value": "7828.5", + "unit": "ft2" + }, + { + "variable": "allowable_lighting_wattage_SBS", + "value": "13308.45", + "unit": "W" + } + ], + "messages": "Project passes based on building area method. Verify if project uses building area method." + } + }, + "6-2": { + "MF1 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "lighting_power_allowance_p", + "value": "0.6", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_p", + "value": "0.6000000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_power_per_area_u", + "value": "0.6000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + } + }, + "6-3": { + "MF1 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Corridor 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2625", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2625", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2625", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2625", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2625", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2625", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "North Stair 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "South Stair 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "North Stair 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "South Stair 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "North Stair 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "South Stair 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Ground Stair": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "RT - Retail Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.06", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.06", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "RT - Retail Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.06", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.06", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "RT - Retail Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.06", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.06", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + } + }, + "6-4": { + "MF1 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.07", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0700000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "Corridor 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "North Stair 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "South Stair 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "North Stair 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "South Stair 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "North Stair 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "South Stair 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "Ground Stair": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "RT - Retail Spc 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.7000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.7000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "RT - Retail Spc 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.7000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.7000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "RT - Retail Spc 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.7000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.7000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + } + }, + "6-5": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Default Building missing:building_open_schedule", + "BASELINE_0_MISSING_DATA": "id:Default Building missing:building_open_schedule" + } + } + }, + "6-6": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "ids_for_interior_lighting_instances_with_daylighting_control", + "value": "[]" + } + ], + "messages": "" + } + }, + "6-7": { + "MF1 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF1 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF1 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF1 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF1 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF1 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "RT - Retail Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "RT - Retail Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + } + }, + "6-8": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "6-9": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "10-1": { + "MF1 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "zone_has_humidification_bool_b", + "value": "False" + }, + { + "variable": "zone_has_humidification_bool_p", + "value": "False" + } + ], + "messages": "" + } + }, + "10-7": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "17424.664062500004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "11825.350585937502", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "17744.167968750004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "11655.406250000004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "17072.740234375004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "30232.910156250007", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "18231.738281250004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "13089.461914062504", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "21480.333984375004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "13363.999023437504", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "17861.921875000004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "31714.800781250007", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "24519.207031250004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "19413.875000000004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "32875.81250000001", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "19330.306640625004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "23628.023437500004", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "42683.80859375001", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "3526.929931640626", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "3538.926025390626", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "7712.565429687502", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "68523.46875000001", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "64654.13281250001", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_cool_capacity_b", + "value": "90199.71875000001", + "unit": "Btu/hr" + }, + { + "variable": "is_zone_agg_factor_undefined_and_needed", + "value": "False" + }, + { + "variable": "expected_baseline_eff_b", + "value": "3.2" + }, + { + "variable": "most_conservative_eff_b", + "value": "3.2" + }, + { + "variable": "modeled_efficiency_b", + "value": "3.2" + } + ], + "messages": "" + } + }, + "10-14": { + "Stair System Unit Heater": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No modeled efficiencies were found with the expected efficiency metrics" + }, + "HVAC System 26": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No modeled efficiencies were found with the expected efficiency metrics" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No modeled efficiencies were found with the expected efficiency metrics" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No modeled efficiencies were found with the expected efficiency metrics" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No modeled efficiencies were found with the expected efficiency metrics" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No modeled efficiencies were found with the expected efficiency metrics" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No modeled efficiencies were found with the expected efficiency metrics" + } + }, + "10-15": { + "MF1 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "11-1": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "proposed_user_comparison", + "value": "[]" + }, + { + "variable": "proposed_baseline_comparison", + "value": "[]" + } + ], + "messages": "" + } + }, + "11-6": { + "DHW Plant 1 Loop (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "piping_losses_modeled_b", + "value": "[False]" + } + ], + "messages": "" + }, + "DHW Plant 1 Res Loop (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "piping_losses_modeled_b", + "value": "[False]" + } + ], + "messages": "" + } + }, + "11-7": { + "MULTIFAMILY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "expected_swh_equip_type_list", + "value": "[]" + }, + { + "variable": "swh_equip_type_list_b", + "value": "[]" + } + ], + "messages": "" + }, + "RETAIL": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "expected_swh_equip_type_list", + "value": "[]" + }, + { + "variable": "swh_equip_type_list_b", + "value": "[]" + } + ], + "messages": "" + } + }, + "11-8": { + }, + "11-9": { + "MULTIFAMILY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Check that the baseline Service Water Heating System for Building Area Type is sized according to ASHRAE Standard 90.1 2019, Section 7.4.1." + }, + "RETAIL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Check that the baseline Service Water Heating System for Building Area Type is sized according to ASHRAE Standard 90.1 2019, Section 7.4.1." + } + }, + "11-10": { + "DHW Plant 1 Wtr Htr (1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Draw pattern must be defined for table F-2 lookup" + }, + "DHW Plant 1 Res Wtr Htr (1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "swh_fuel_type_b", + "value": "NATURAL_GAS" + }, + { + "variable": "swh_tank_type_b", + "value": "COMMERCIAL_STORAGE" + }, + { + "variable": "swh_input_power_b", + "value": "269259.0833333333 watt" + }, + { + "variable": "swh_tank_storage_volume_b", + "value": "1512.0000000000005 gallon" + }, + { + "variable": "swh_setpoint_temperature_b", + "value": "43.33333333333337 degree_Celsius" + }, + { + "variable": "modeled_efficiency_b", + "value": "0.8" + }, + { + "variable": "modeled_standby_loss_b", + "value": "None" + }, + { + "variable": "swh_input_power_per_volume_b", + "value": "607.6388888888887 Btu/h/gallon" + }, + { + "variable": "expected_efficiency_b", + "value": "0.8" + }, + { + "variable": "expected_efficiency_metric_b", + "value": "THERMAL_EFFICIENCY" + }, + { + "variable": "standby_loss_target_b", + "value": "5425.726360949188" + }, + { + "variable": "standby_loss_target_metric_b", + "value": "STANDBY_LOSS_ENERGY" + }, + { + "variable": "standby_loss_is_estimated_b", + "value": "False" + } + ], + "messages": "Based on the provided details, STANDBY_LOSS_ENERGY is an expected efficiency metric for this water heater, however it was not provided. Note that the specific requirements of 10 CFR 430 can be found in ASHRAE 90.1 Appendix F Table F-2." + } + }, + "11-11": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "11-12": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "buildings:Default Building is missing building_open_schedule" + } + }, + "11-13": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "is_applicable", + "value": "True" + }, + { + "variable": "service_water_heating_btu_per_sf_per_year", + "value": "-30.286673652702195", + "unit": "Btu/ft2" + } + ], + "messages": "This building has service water heating loads. Confirm that service water heating energy consumption is calculated explicitly based upon the volume of service water heating required and the entering makeup water and leaving service water heating temperatures. Entering water temperatures shall be estimated based upon the location. Leaving temperatures shall be based upon the end-use requirements." + } + }, + "11-14": { + "DHW Plant 1 Loop (1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "piping_info_b", + "value": "{'DHW Plant 1 Loop (1) ServiceWaterPiping': {'IS_RECIRC': False, 'PUMP_POWER': '0.0 Btu/hr'}, 'DHW Plant 1 Res Loop (1) ServiceWaterPiping': {'IS_RECIRC': False, 'PUMP_POWER': '0.0 Btu/hr'}}" + } + ], + "messages": "" + }, + "DHW Plant 1 Res Loop (1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "piping_info_b", + "value": "{'DHW Plant 1 Loop (1) ServiceWaterPiping': {'IS_RECIRC': False, 'PUMP_POWER': '0.0 Btu/hr'}, 'DHW Plant 1 Res Loop (1) ServiceWaterPiping': {'IS_RECIRC': False, 'PUMP_POWER': '0.0 Btu/hr'}}" + } + ], + "messages": "" + } + }, + "11-15": { + "DHW Plant 1 Loop (1) Load1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_swh_use_none_b", + "value": "False" + }, + { + "variable": "is_swh_use_none_p", + "value": "False" + }, + { + "variable": "swh_use_b", + "value": "0.0997" + }, + { + "variable": "swh_use_p", + "value": "0.0997" + }, + { + "variable": "swh_use_id_b", + "value": "DHW Plant 1 Loop (1) Load1" + }, + { + "variable": "swh_use_id_p", + "value": "DHW Plant 1 Loop (1) Load1" + }, + { + "variable": "swh_use_use_units_b", + "value": "VOLUME" + }, + { + "variable": "swh_use_use_units_p", + "value": "VOLUME" + }, + { + "variable": "swh_use_multiplier_schedule_b", + "value": "DHW Eqp NRes Sch" + }, + { + "variable": "swh_use_multiplier_schedule_p", + "value": "DHW Eqp NRes Sch" + }, + { + "variable": "swh_use_temperature_at_fixture_b", + "value": "135.00000000000006", + "unit": "F" + }, + { + "variable": "swh_use_temperature_at_fixture_p", + "value": "135.00000000000006", + "unit": "F" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_b", + "value": "None" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_p", + "value": "None" + }, + { + "variable": "swh_use_served_by_distribution_system_b", + "value": "{'id': 'DHW Plant 1 Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'entering_water_mains_temperature_schedule': 'Ground Temperature Schedule', 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_served_by_distribution_system_p", + "value": "{'id': 'DHW Plant 1 Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'entering_water_mains_temperature_schedule': 'Ground Temperature Schedule', 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_design_supply_water_temperature_b", + "value": "None" + }, + { + "variable": "swh_use_design_supply_water_temperature_p", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_b", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_p", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_b", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_p", + "value": "None" + } + ], + "messages": "" + }, + "DHW Plant 1 Res Loop (1) Load1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "is_swh_use_none_b", + "value": "False" + }, + { + "variable": "is_swh_use_none_p", + "value": "False" + }, + { + "variable": "swh_use_b", + "value": "8.9" + }, + { + "variable": "swh_use_p", + "value": "7.0" + }, + { + "variable": "swh_use_id_b", + "value": "DHW Plant 1 Res Loop (1) Load1" + }, + { + "variable": "swh_use_id_p", + "value": "DHW Plant 1 Res Loop (1) Load1" + }, + { + "variable": "swh_use_use_units_b", + "value": "VOLUME" + }, + { + "variable": "swh_use_use_units_p", + "value": "VOLUME" + }, + { + "variable": "swh_use_multiplier_schedule_b", + "value": "MF DHW Sch" + }, + { + "variable": "swh_use_multiplier_schedule_p", + "value": "MF DHW Sch" + }, + { + "variable": "swh_use_temperature_at_fixture_b", + "value": "110.0", + "unit": "F" + }, + { + "variable": "swh_use_temperature_at_fixture_p", + "value": "110.0", + "unit": "F" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_b", + "value": "None" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_p", + "value": "None" + }, + { + "variable": "swh_use_served_by_distribution_system_b", + "value": "{'id': 'DHW Plant 1 Res Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Res Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Res Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'entering_water_mains_temperature_schedule': 'Ground Temperature Schedule', 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_served_by_distribution_system_p", + "value": "{'id': 'DHW Plant 1 Res Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Res Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Res Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'entering_water_mains_temperature_schedule': 'Ground Temperature Schedule', 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_design_supply_water_temperature_b", + "value": "None" + }, + { + "variable": "swh_use_design_supply_water_temperature_p", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_b", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_p", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_b", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_p", + "value": "None" + } + ], + "messages": "Proposed Service Water Heating Use is less than the baseline. Manually verify that reduction is due to an ECM that reduces service water heating use, such as low-flow fixtures." + } + }, + "11-16": { + "DHW Plant 1 Wtr Htr (1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DHW Plant 1 Res Wtr Htr (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heater_fuel_type_b", + "value": "NATURAL_GAS" + }, + { + "variable": "proposed_fuels", + "value": "['NATURAL_GAS', 'ELECTRICITY']" + } + ], + "messages": "" + } + }, + "11-17": { + "MULTIFAMILY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_swh_loads", + "value": "True" + }, + { + "variable": "swh_bat", + "value": "MULTIFAMILY" + } + ], + "messages": "" + }, + "RETAIL": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_swh_loads", + "value": "True" + }, + { + "variable": "swh_bat", + "value": "RETAIL" + } + ], + "messages": "" + } + }, + "12-1": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "reduced_misc_equipment_power", + "value": "[{'id': 'MF1 - Multifamily Spc 1 MiscEqp1', 'baseline_power': '3481.2370149072667 Btu/hr', 'proposed_power': '3317.027721751263 Btu/hr'}, {'id': 'MF1 - Multifamily Spc 2 MiscEqp1', 'baseline_power': '3481.2370149072667 Btu/hr', 'proposed_power': '3317.027721751263 Btu/hr'}, {'id': 'MF1 - Multifamily Spc 3 MiscEqp1', 'baseline_power': '6813.278519434041 Btu/hr', 'proposed_power': '6491.8974571965855 Btu/hr'}, {'id': 'MF1 - Multifamily Spc 4 MiscEqp1', 'baseline_power': '3449.589043993874 Btu/hr', 'proposed_power': '3286.8725796545405 Btu/hr'}, {'id': 'MF1 - Multifamily Spc 5 MiscEqp1', 'baseline_power': '3449.589043993874 Btu/hr', 'proposed_power': '3286.8725796545405 Btu/hr'}, {'id': 'MF1 - Multifamily Spc 6 MiscEqp1', 'baseline_power': '6813.278519434041 Btu/hr', 'proposed_power': '6491.8974571965855 Btu/hr'}, {'id': 'MF2 - Multifamily Spc 1 MiscEqp1', 'baseline_power': '3481.2370149072667 Btu/hr', 'proposed_power': '3317.027721751263 Btu/hr'}, {'id': 'MF2 - Multifamily Spc 2 MiscEqp1', 'baseline_power': '3481.2370149072667 Btu/hr', 'proposed_power': '3317.027721751263 Btu/hr'}, {'id': 'MF2 - Multifamily Spc 3 MiscEqp1', 'baseline_power': '6813.278519434041 Btu/hr', 'proposed_power': '6491.8974571965855 Btu/hr'}, {'id': 'MF2 - Multifamily Spc 4 MiscEqp1', 'baseline_power': '3449.589043993874 Btu/hr', 'proposed_power': '3286.8725796545405 Btu/hr'}, {'id': 'MF2 - Multifamily Spc 5 MiscEqp1', 'baseline_power': '3449.589043993874 Btu/hr', 'proposed_power': '3286.8725796545405 Btu/hr'}, {'id': 'MF2 - Multifamily Spc 6 MiscEqp1', 'baseline_power': '6813.278519434041 Btu/hr', 'proposed_power': '6491.8974571965855 Btu/hr'}, {'id': 'MF3 - Multifamily Spc 1 MiscEqp1', 'baseline_power': '3481.2370149072667 Btu/hr', 'proposed_power': '3317.027721751263 Btu/hr'}, {'id': 'MF3 - Multifamily Spc 2 MiscEqp1', 'baseline_power': '3481.2370149072667 Btu/hr', 'proposed_power': '3317.027721751263 Btu/hr'}, {'id': 'MF3 - Multifamily Spc 3 MiscEqp1', 'baseline_power': '6813.278519434041 Btu/hr', 'proposed_power': '6491.8974571965855 Btu/hr'}, {'id': 'MF3 - Multifamily Spc 4 MiscEqp1', 'baseline_power': '3449.589043993874 Btu/hr', 'proposed_power': '3286.8725796545405 Btu/hr'}, {'id': 'MF3 - Multifamily Spc 5 MiscEqp1', 'baseline_power': '3449.589043993874 Btu/hr', 'proposed_power': '3286.8725796545405 Btu/hr'}, {'id': 'MF3 - Multifamily Spc 6 MiscEqp1', 'baseline_power': '6813.278519434041 Btu/hr', 'proposed_power': '6491.8974571965855 Btu/hr'}]" + }, + { + "variable": "unexpected_misc_equipment_power", + "value": "[]" + }, + { + "variable": "compliance_path", + "value": "None" + } + ], + "messages": "The proposed building miscellaneous equipment load is less than the baseline, which is only permitted when the model is being used to quantify performance that exceeds the requirements of Standard 90.1." + } + }, + "12-2": { + "MF1 - Multifamily Spc 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF1 - Multifamily Spc 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF2 - Multifamily Spc 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "MF3 - Multifamily Spc 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Corridor 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Corridor 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "North Stair 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "South Stair 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "North Stair 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "South Stair 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "North Stair 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "South Stair 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Ground Stair MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "RT - Retail Spc 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "SALES_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "RT - Retail Spc 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "SALES_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "RT - Retail Spc 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "SALES_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + } + }, + "12-3": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "12-4": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-1": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-2": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-3": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-4": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-5": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-6": { + "Sample 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-7": { + "Sample 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "18-1": { + "MF1 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF1 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF1 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF1 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF1 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF1 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF2 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF2 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF2 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF2 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF2 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF2 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF3 - Multifamily Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF3 - Multifamily Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF3 - Multifamily Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF3 - Multifamily Zn 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF3 - Multifamily Zn 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF3 - Multifamily Zn 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-9']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-9" + } + ], + "messages": "HVAC system type Sys-9 was selected based on G3_1_1e." + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-9']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-9" + } + ], + "messages": "HVAC system type Sys-9 was selected based on G3_1_1e." + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-9']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-9" + } + ], + "messages": "HVAC system type Sys-9 was selected based on G3_1_1e." + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-9']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-9" + } + ], + "messages": "HVAC system type Sys-9 was selected based on G3_1_1e." + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-9']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-9" + } + ], + "messages": "HVAC system type Sys-9 was selected based on G3_1_1e." + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-9']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-9" + } + ], + "messages": "HVAC system type Sys-9 was selected based on G3_1_1e." + }, + "RT - Retail Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-9']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-9" + } + ], + "messages": "HVAC system type Sys-9 was selected based on G3_1_1e." + }, + "RT - Retail Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "RT - Retail Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + }, + "RT - Retail Zn 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_system_types_b", + "value": "{'Sys-1': ['Multifamily 1 System 1', 'Multifamily 1 System 2', 'Multifamily 1 System 3', 'Multifamily 1 System 4', 'Multifamily 1 System 5', 'Multifamily 1 System 6', 'Multifamily 2 System 1', 'Multifamily 2 System 2', 'Multifamily 2 System 3', 'Multifamily 2 System 4', 'Multifamily 2 System 5', 'Multifamily 2 System 6', 'Multifamily 3 System 1', 'Multifamily 3 System 2', 'Multifamily 3 System 3', 'Multifamily 3 System 4', 'Multifamily 3 System 5', 'Multifamily 3 System 6', 'Multifamily 1 Corridor System 1', 'Multifamily 2 Corridor System 1', 'Multifamily 3 Corridor System 1', 'RT - Retail System 1', 'RT - Retail System 2', 'RT - Retail System 3'], 'Sys-9': ['Stair System Unit Heater', 'HVAC System 26', 'Stair System Unit Heater - MF1 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF2 - Multifamily Stair Zn 2', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 1', 'Stair System Unit Heater - MF3 - Multifamily Stair Zn 2']}" + }, + { + "variable": "hvac_system_types_serving_zone_b", + "value": "['Sys-1']" + }, + { + "variable": "expected_system_type_b", + "value": "Sys-1" + } + ], + "messages": "HVAC system type Sys-1 was selected based on RESIDENTIAL CZ_3b_3c_or_4_to_8." + } + }, + "18-2": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 1 System 1" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 1 System 2" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 1 System 3" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 1 System 4" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 1 System 5" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 1 System 6" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 2 System 1" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 2 System 2" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 2 System 3" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 2 System 4" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 2 System 5" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 2 System 6" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 3 System 1" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 3 System 2" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 3 System 3" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 3 System 4" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 3 System 5" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 3 System 6" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 1 Corridor System 1" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 2 Corridor System 1" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Multifamily 3 Corridor System 1" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Stair System Unit Heater" + }, + { + "variable": "sys_type", + "value": "Sys-9" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "HVAC System 26" + }, + { + "variable": "sys_type", + "value": "Sys-9" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2" + }, + { + "variable": "sys_type", + "value": "Sys-9" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1" + }, + { + "variable": "sys_type", + "value": "Sys-9" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2" + }, + { + "variable": "sys_type", + "value": "Sys-9" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1" + }, + { + "variable": "sys_type", + "value": "Sys-9" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2" + }, + { + "variable": "sys_type", + "value": "Sys-9" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "RT - Retail System 1" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "RT - Retail System 2" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id", + "value": "RT - Retail System 3" + }, + { + "variable": "sys_type", + "value": "Sys-1" + }, + { + "variable": "is_sys_single_zone_sys_b", + "value": "True" + }, + { + "variable": "does_sys_only_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_part_of_serve_lab_b", + "value": "False" + }, + { + "variable": "does_sys_serve_lab_and_other_b", + "value": "False" + }, + { + "variable": "does_two_sys_exist_on_same_fl_b", + "value": "false" + }, + { + "variable": "does_sys_serve_one_floor", + "value": "False" + }, + { + "variable": "do_multi_zone_evaluation", + "value": "False" + }, + { + "variable": "hvac_sys2_id_b", + "value": "None" + }, + { + "variable": "building_total_lab_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + } + ], + "messages": "" + } + }, + "18-3": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "target_baseline_systems_b", + "value": "{'MF1 - Multifamily Zn 1': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF1 - Multifamily Zn 2': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF1 - Multifamily Zn 3': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF1 - Multifamily Zn 4': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF1 - Multifamily Zn 5': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF1 - Multifamily Zn 6': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF2 - Multifamily Zn 1': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF2 - Multifamily Zn 2': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF2 - Multifamily Zn 3': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF2 - Multifamily Zn 4': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF2 - Multifamily Zn 5': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF2 - Multifamily Zn 6': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF3 - Multifamily Zn 1': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF3 - Multifamily Zn 2': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF3 - Multifamily Zn 3': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF3 - Multifamily Zn 4': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF3 - Multifamily Zn 5': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF3 - Multifamily Zn 6': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF1 - Multifamily Corridor Zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF2 - Multifamily Corridor Zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF3 - Multifamily Corridor Zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'MF1 - Multifamily Stair Zn 1': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'MF1 - Multifamily Stair Zn 2': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'MF2 - Multifamily Stair Zn 1': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'MF2 - Multifamily Stair Zn 2': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'MF3 - Multifamily Stair Zn 1': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'MF3 - Multifamily Stair Zn 2': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'RT - Retail Stair Zn 1': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'RT - Retail Zn 1': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'RT - Retail Zn 2': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'RT - Retail Zn 3': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}}" + } + ], + "messages": "" + } + }, + "19-1": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + } + }, + "19-2": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_sized_using_coincident_load", + "value": "True" + } + ], + "messages": "" + } + }, + "19-3": { + "Sample 1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-4": { + "MF1 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "RT - Retail Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "RT - Retail Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "RT - Retail Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + }, + "RT - Retail Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Fraction Yr is missing hourly_cooling_design_day" + } + }, + "19-5": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "unmet_load_hours_heating_p", + "value": "4.0", + "unit": "hr" + }, + { + "variable": "unmet_load_hours_cooling_p", + "value": "0.0", + "unit": "hr" + }, + { + "variable": "coincident_unmet_load_hours_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-6": { + "Sample 1 Automated Review": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:Sample 1 Automated Review Output missing:unmet_load_hours" + } + } + }, + "19-7": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "zones:MF1 - Multifamily Zn 1 is missing air_distribution_effectiveness" + } + }, + "19-8": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.89735075377394", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025974025974024", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.89734856730502", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025974025974024", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "158.32767548913398", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025480237532568", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.16191171953506", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025165507225738", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.16191065633029", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025165507225738", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "158.32766808600354", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025480237532568", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.89734359475187", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025974025974024", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.897344235334", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025974025974024", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "158.32766449153496", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025480237532568", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.16191377136965", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025165507225738", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.16191066048123", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025165507225738", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "158.32766304458346", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025480237532568", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "81.77851689629097", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025974025974024", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.89734886014367", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025974025974024", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "158.32766204032853", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025480237532568", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.16191039175737", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025165507225738", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.16191238343254", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025165507225738", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "158.32766203875508", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.6025480237532568", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "39.19393965909876", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999234127288041", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "39.193939367252604", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999234127288041", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "39.193939700701776", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999234127288041", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.0", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.0", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.0", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.0", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.0", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.0", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.0", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "476.916413373081", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "14.925352798053527", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "617.9026662614342", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "14.925370892018776", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "721.9887816300616", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "14.925361620057858", + "unit": "people/kft2" + } + ], + "messages": "" + } + }, + "19-9": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "air_economizer_type_b", + "value": "None" + } + ], + "messages": "" + } + }, + "19-10": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "19-11": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "does_hvac_system_match_b", + "value": "False" + } + ], + "messages": "" + } + }, + "19-12": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-13": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.89735075377394", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "581.1622314453125", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "957.4102249145508", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.89734856730502", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "394.4091796875", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "957.410285949707", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "158.32767548913398", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "591.818603515625", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "1911.353546142578", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.16191171953506", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "388.74102783203125", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "956.6748504638672", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.16191065633029", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "569.424560546875", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "956.6749114990236", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "158.32766808600354", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "1008.353759765625", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "1911.353546142578", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.89734359475187", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "608.0804443359375", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "8846.027229309084", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.897344235334", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "436.5708923339844", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "8846.027229309084", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "158.32766449153496", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "716.430419921875", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "17688.58743286133", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.16191377136965", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "445.72747802734375", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "8845.291793823244", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.16191066048123", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "595.7460327148438", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "8845.291793823244", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "158.32766304458346", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "1057.779052734375", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "17688.58743286133", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "81.77851689629097", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "817.7854614257812", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "957.410285949707", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.89734886014367", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "647.5081176757812", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "957.410285949707", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "158.32766204032853", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "1096.5020751953125", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "1911.353546142578", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.16191039175737", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "644.7208251953125", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "956.6748504638672", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "80.16191238343254", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "788.0619506835938", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "956.6748504638672", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "158.32766203875508", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "1423.626708984375", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "1911.353546142578", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "39.19393965909876", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "117.63317108154297", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "100.05854797363281", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "39.193939367252604", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "118.03327178955078", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "1000.5855712890625", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "39.193939700701776", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "257.2360534667969", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "100.05855560302734", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "476.916413373081", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "2285.453125", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "1938.4708251953125", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "617.9026662614342", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "2156.399658203125", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "1666.677978515625", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "all_design_setpoints_delta_Ts_are_per_reqs_b", + "value": "True" + }, + { + "variable": "are_all_hvac_sys_fan_objs_autosized_b", + "value": "True" + }, + { + "variable": "fan_minimum_outdoor_airflow_b", + "value": "721.9887816300616", + "unit": "cfm" + }, + { + "variable": "supply_fans_airflow_b", + "value": "3008.41796875", + "unit": "cfm" + }, + { + "variable": "supply_airflow_p", + "value": "2736.359375", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-14": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "523.0460205078125", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "523.0460205078125", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "500.26488069153856", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "523.0460083007813", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "354.96826171875", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "354.96826171875", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "313.511831120195", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "354.96826171875", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "532.6367797851562", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "532.6367797851562", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "433.490928026491", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "532.6367431640625", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "349.866943359375", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "349.866943359375", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "308.5791161124962", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "349.86692504882814", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "512.4821166992188", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "512.4821166992188", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "489.2626498905447", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "512.4821044921875", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "907.5184326171875", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "907.5184326171875", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "850.0260916796215", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "907.5183837890626", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "547.2723999023438", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "547.2723999023438", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "527.1831007411856", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "547.2723999023438", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "392.913818359375", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "392.913818359375", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "355.6735480986504", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "392.91380310058594", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "644.7874145507812", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "644.7874145507812", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "558.10275543034", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "644.7873779296875", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "401.1547546386719", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "401.1547546386719", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "365.5655642559741", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "401.1547302246094", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "536.1714477539062", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "536.1714477539062", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "515.5841220543625", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "536.1714294433594", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "952.0011596679688", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "952.0011596679688", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "899.4513896897915", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "952.0011474609375", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "736.0069580078125", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "736.0069580078125", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "736.0069445294903", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "736.0069152832032", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "582.75732421875", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "582.75732421875", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "566.6107688156376", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "582.7573059082032", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "986.8519287109375", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "986.8519287109375", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "938.174413154984", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "986.8518676757812", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "580.248779296875", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "580.248779296875", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "564.5589148035551", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "580.2487426757813", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "709.2557983398438", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "709.2557983398438", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "707.9000383001612", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "709.2557556152344", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "1281.2640380859375", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "1281.2640380859375", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "1265.29904694562", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "1281.2640380859375", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "105.86985778808594", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "105.86985778808594", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "78.43923142244421", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "105.86985397338867", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "106.22994995117188", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "106.22994995117188", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "78.83933242229818", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "106.22994461059571", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "True" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "231.512451171875", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "231.512451171875", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "218.0421137660951", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "231.5124481201172", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "38.202125549316406", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "34.38191299438477", + "unit": "cfm" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "385.1438598632813", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "346.62947387695317", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "37.10996627807617", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "33.398969650268555", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "38.26144027709961", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "34.43529624938965", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "37.172122955322266", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "33.45491065979004", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "49.65279769897461", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "44.68751792907715", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "48.617313385009766", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "43.75558204650879", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "1808.536711626919", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "2056.9078125", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "1538.4969919416908", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "1940.7596923828125", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "more_than_one_supply_and_return_fan", + "value": "False" + }, + { + "variable": "is_modeled_with_return_fan_p", + "value": "False" + }, + { + "variable": "is_modeled_with_relief_fan_p", + "value": "False" + }, + { + "variable": "return_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "relief_fans_airflow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "baseline_modeled_return_as_expected", + "value": "True" + }, + { + "variable": "baseline_modeled_relief_as_expected", + "value": "True" + }, + { + "variable": "modeled_cfm", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "supply_minus_OA_flow", + "value": "2286.4291871199384", + "unit": "cfm" + }, + { + "variable": "supply_cfm_90_percent", + "value": "2707.576171875", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-15": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id_b", + "value": "Stair System Unit Heater" + }, + { + "variable": "supply_fan_qty_b", + "value": "1" + }, + { + "variable": "supply_fan_airflow_b", + "value": "38.202125549316406", + "unit": "cfm" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "all_design_setpoints_105", + "value": "True" + }, + { + "variable": "proposed_supply_flow", + "value": "9.154834747314453", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id_b", + "value": "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2" + }, + { + "variable": "supply_fan_qty_b", + "value": "1" + }, + { + "variable": "supply_fan_airflow_b", + "value": "37.10996627807617", + "unit": "cfm" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "all_design_setpoints_105", + "value": "True" + }, + { + "variable": "proposed_supply_flow", + "value": "9.008360862731934", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id_b", + "value": "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1" + }, + { + "variable": "supply_fan_qty_b", + "value": "1" + }, + { + "variable": "supply_fan_airflow_b", + "value": "38.26144027709961", + "unit": "cfm" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "all_design_setpoints_105", + "value": "True" + }, + { + "variable": "proposed_supply_flow", + "value": "9.167741775512695", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id_b", + "value": "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2" + }, + { + "variable": "supply_fan_qty_b", + "value": "1" + }, + { + "variable": "supply_fan_airflow_b", + "value": "37.172122955322266", + "unit": "cfm" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "all_design_setpoints_105", + "value": "True" + }, + { + "variable": "proposed_supply_flow", + "value": "9.025472640991211", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id_b", + "value": "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1" + }, + { + "variable": "supply_fan_qty_b", + "value": "1" + }, + { + "variable": "supply_fan_airflow_b", + "value": "49.65279769897461", + "unit": "cfm" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "all_design_setpoints_105", + "value": "True" + }, + { + "variable": "proposed_supply_flow", + "value": "12.444198608398438", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_id_b", + "value": "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2" + }, + { + "variable": "supply_fan_qty_b", + "value": "1" + }, + { + "variable": "supply_fan_airflow_b", + "value": "48.617313385009766", + "unit": "cfm" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "all_design_setpoints_105", + "value": "True" + }, + { + "variable": "proposed_supply_flow", + "value": "12.333560943603516", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-16": { + "MF1 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Zn 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "True" + } + ], + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "True" + } + ], + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "True" + } + ], + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "True" + } + ], + "messages": "" + }, + "RT - Retail Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail Zn 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_has_non_mech_cooling", + "value": "False" + }, + { + "variable": "zone_non_mechanical_cooling_fan_airflow_p ", + "value": "None" + }, + { + "variable": "zone_served_by_sys_9_or_10", + "value": "False" + } + ], + "messages": "" + } + }, + "19-17": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.30061699109711126 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2988180327585186 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2993867059963364 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.30102275573224113 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.29922379740801297 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.3002861689337199 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.29982348927292046 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2998234830388822 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.29982844482649085 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2998254570908735 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.29982545023968654 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2998284381081936 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.30061699350056015 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.3006169863530931 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.29938670806956363 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2992237951617285 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2992238025865385 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.30031016610074296 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2998204486982368 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2998204619296462 W/cfm" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2998204349856705 W/cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.29982444968120325 W/cfm" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.29982445720620843 W/cfm" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "fan_power_airflow", + "value": "0.2998244517781222 W/cfm" + } + ], + "messages": "" + } + }, + "19-18": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "19-19": { + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "zones_served_by_hvac_has_non_mech_cooling_bool_p", + "value": "False" + }, + { + "variable": "zone_hvac_has_non_mech_cooling_p", + "value": "False" + }, + { + "variable": "more_than_one_supply_fan_b", + "value": "False" + }, + { + "variable": "fan_power_per_flow_b", + "value": "0.2998244483828406 W/cfm" + }, + { + "variable": "target_fan_power_per_flow", + "value": "0.3 W/cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "zones_served_by_hvac_has_non_mech_cooling_bool_p", + "value": "False" + }, + { + "variable": "zone_hvac_has_non_mech_cooling_p", + "value": "False" + }, + { + "variable": "more_than_one_supply_fan_b", + "value": "False" + }, + { + "variable": "fan_power_per_flow_b", + "value": "0.2998244297495902 W/cfm" + }, + { + "variable": "target_fan_power_per_flow", + "value": "0.3 W/cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "zones_served_by_hvac_has_non_mech_cooling_bool_p", + "value": "False" + }, + { + "variable": "zone_hvac_has_non_mech_cooling_p", + "value": "False" + }, + { + "variable": "more_than_one_supply_fan_b", + "value": "False" + }, + { + "variable": "fan_power_per_flow_b", + "value": "0.29982443790293467 W/cfm" + }, + { + "variable": "target_fan_power_per_flow", + "value": "0.3 W/cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "zones_served_by_hvac_has_non_mech_cooling_bool_p", + "value": "False" + }, + { + "variable": "zone_hvac_has_non_mech_cooling_p", + "value": "False" + }, + { + "variable": "more_than_one_supply_fan_b", + "value": "False" + }, + { + "variable": "fan_power_per_flow_b", + "value": "0.29982442099054296 W/cfm" + }, + { + "variable": "target_fan_power_per_flow", + "value": "0.3 W/cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "zones_served_by_hvac_has_non_mech_cooling_bool_p", + "value": "False" + }, + { + "variable": "zone_hvac_has_non_mech_cooling_p", + "value": "False" + }, + { + "variable": "more_than_one_supply_fan_b", + "value": "False" + }, + { + "variable": "fan_power_per_flow_b", + "value": "0.29982442472406273 W/cfm" + }, + { + "variable": "target_fan_power_per_flow", + "value": "0.3 W/cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "zones_served_by_hvac_has_non_mech_cooling_bool_p", + "value": "False" + }, + { + "variable": "zone_hvac_has_non_mech_cooling_p", + "value": "False" + }, + { + "variable": "more_than_one_supply_fan_b", + "value": "False" + }, + { + "variable": "fan_power_per_flow_b", + "value": "0.2998244368440086 W/cfm" + }, + { + "variable": "target_fan_power_per_flow", + "value": "0.3 W/cfm" + } + ], + "messages": "" + } + }, + "19-20": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "129.7516077756882", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "44.95563358068467", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "130.05308630693614", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "44.65415504943671", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "88.05669099092485", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "29.799884185194976", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "87.73311984220572", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "30.1234553339141", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "132.46731460094455", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "44.715307652950294", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "132.31377805688447", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "44.868844197010354", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "86.94894611835481", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "30.07094934582711", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "87.22657742172807", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "29.793318042453848", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "127.36207246780398", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "43.02330687642098", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "127.00518509221047", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "43.38019425201449", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "225.70076584815982", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "77.09392160177232", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "226.11646990213424", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "76.67821754779794", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "172.64668643474582", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "9.670114144682886", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "172.666816276367", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "9.649984303061698", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "123.9515542984009", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "6.942651234567167", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "123.96600678913053", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "6.928198743837519", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "203.65792512893682", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "11.148293502628807", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "203.6517723335031", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "11.154446298062535", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "126.62835419178012", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "7.012090645730497", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "126.62360386602424", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "7.016840971486381", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "169.24767196178442", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "9.372150525450708", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "169.24132266053996", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "9.378499826695148", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "300.6922602653504", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "16.45998097956181", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "300.68317593659214", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "16.469065308320133", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "182.5806498527527", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "63.259556889534004", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "183.0048793452795", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "62.83532739700721", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "144.56413686275485", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "50.087802112102516", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "144.90003518326495", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "49.75190379159238", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "245.43109536170965", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "82.84705132246019", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "245.14662492720737", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "83.13152175696251", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "144.20343935489657", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "48.7123727798462", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "143.7993595558911", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "49.116452578851664", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "176.2642711400986", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "59.54262241721155", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "175.77035234790188", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "60.03654120940824", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "319.2749023437501", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "108.25467109680179", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "319.2641150321625", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "108.26545840838939", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "18.32898519933224", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "16.939844936132435", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "18.326535556461327", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "16.94229457900334", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "18.393449485301975", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "16.99534058570862", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "18.388869310314846", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "16.99992076069575", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "40.08117318153382", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "37.043452262878425", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "40.07581723172914", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "37.048808212683106", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "11.453931219875816", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "11.453931219875816", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "115.47555029392245", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "115.47555029392245", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "11.126474477350714", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "11.126474477350714", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "11.471714824438097", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "11.471714824438097", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "11.145110242068771", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "11.145110242068771", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "14.88712150603533", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "14.88712150603533", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "14.576658606529238", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "14.576658606529238", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "685.2347254753114", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "685.2347254753114", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "646.5413570404054", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "646.5413570404054", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "901.9972681999209", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "901.9972681999209", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + } + }, + "19-21": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "581.1622314453125", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.89735075377394", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.13919925689697266 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "38.17929784989719 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "394.4091796875", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.89734856730502", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.20511020720005035 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "38.17929681799877 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "591.818603515625", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "158.32767548913398", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.26752737164497375 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "74.72234163489607 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "388.74102783203125", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.16191171953506", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.20620903372764587 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "37.83220927805867 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "569.424560546875", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.16191065633029", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.14077705144882202 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "37.8322087762819 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "1008.353759765625", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "158.32766808600354", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.15701599419116974 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "74.72233814100758 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "608.0804443359375", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.89734359475187", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.1330372393131256 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "38.17929447121503 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "436.5708923339844", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.897344235334", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.1853017359972 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "38.17929477353613 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "716.430419921875", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "158.32766449153496", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.22099517285823822 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "74.72233644460732 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "445.72747802734375", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.16191377136965", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.17984512448310852 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "37.832210246416764 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "595.7460327148438", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.16191066048123", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.13455718755722046 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "37.832208778240926 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "1057.779052734375", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "158.32766304458346", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.14967933297157288 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "74.72233576172226 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "817.7854614257812", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "81.77851689629097", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.09999996423721313 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "38.59516195789251 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "647.5081176757812", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.89734886014367", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.12493642419576645 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "38.179296956203224 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "1096.5020751953125", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "158.32766204032853", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.14439339935779574 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "74.72233528776671 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "644.7208251953125", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.16191039175737", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.12433584779500961 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "37.83220865141739 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "788.0619506835938", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "80.16191238343254", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.10172031819820404 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "37.83220959138339 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "1423.626708984375", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "158.32766203875508", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.11121430993080138 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "74.72233528702412 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "117.63317108154297", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "39.19393965909876", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.3331878185272217 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "True" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "18.49747961104673 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "118.03327178955078", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "39.193939367252604", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.33205839991569525 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "True" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "18.497479473310683 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "257.2360534667969", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "39.193939700701776", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.15236565470695496 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "True" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "18.49747963068117 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "True" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "38.202125549316406", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.0 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "0.0 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "True" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "True" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "37.10996627807617", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.0 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "0.0 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "True" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "True" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "38.26144027709961", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.0 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "0.0 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "True" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "True" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "37.172122955322266", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.0 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "0.0 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "True" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "True" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "49.65279769897461", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.0 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "0.0 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "True" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "True" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "48.617313385009766", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.0 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "0.0 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "True" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "False" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "2285.453125", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "476.916413373081", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.2086747735738754 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "225.07948191153977 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "2156.399658203125", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "617.9026662614342", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.28654366731643677 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "291.61758348854664 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "climate_zone_b", + "value": "CZ4A" + }, + { + "variable": "ER_not_req_for_heating_sys_b", + "value": "False" + }, + { + "variable": "serves_zones_with_systems_likely_exhausting_toxic_etc_p", + "value": "False" + }, + { + "variable": "serves_kitchen_space_p", + "value": "False" + }, + { + "variable": "all_lighting_space_types_defined_p", + "value": "True" + }, + { + "variable": "all_ventilation_space_types_defined_p", + "value": "False" + }, + { + "variable": "serves_zones_that_have_dehumid_heat_recovery_p", + "value": "False" + }, + { + "variable": "sys_type_heating_only_b", + "value": "False" + }, + { + "variable": "hvac_fan_sys_exhaust_sum_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "maximum_zone_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "num_hvac_exhaust_fans_b", + "value": "0" + }, + { + "variable": "maximum_hvac_exhaust_b", + "value": "0.0 foot ** 3 / minute" + }, + { + "variable": "supply_airflow_b", + "value": "3008.41796875", + "unit": "cfm" + }, + { + "variable": "min_outdoor_airflow_b", + "value": "721.9887816300616", + "unit": "cfm" + }, + { + "variable": "OA_fraction_b", + "value": "0.2399895191192627 dimensionless" + }, + { + "variable": "ER_modeled_b", + "value": "False" + }, + { + "variable": "ER_modeled_p", + "value": "False" + }, + { + "variable": "max_outdoor_airflow_b", + "value": "340.74075950939056 liter / second" + }, + { + "variable": "exception_1_applies", + "value": "False" + }, + { + "variable": "exception_2_applies", + "value": "False" + }, + { + "variable": "exception_6_applies", + "value": "True" + }, + { + "variable": "exception_7_applies", + "value": "False" + } + ], + "messages": "" + } + }, + "19-22": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-23": { + "MF1 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Zn 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Zn 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Zn 6": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Corridor Zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Corridor Zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Corridor Zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF1 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF2 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "MF3 - Multifamily Stair Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "RT - Retail Stair Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "RT - Retail Zn 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "RT - Retail Zn 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "RT - Retail Zn 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + } + }, + "19-24": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "99.94454268172603", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "99.94454271487757", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "99.94454268172603", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "ERV 1-4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1917.1219482421877", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - RT - Retail Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "476.91640886550886", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "617.9026480131652", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "721.9887568182312", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-25": { + "Multifamily 1 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.89735075377394", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.89734856730502", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "158.32767548913398", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.16191171953506", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.16191065633029", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "158.32766808600354", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.89734359475187", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.897344235334", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "158.32766449153496", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.16191377136965", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.16191066048123", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "158.32766304458346", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "81.77851689629097", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.89734886014367", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "158.32766204032853", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.16191039175737", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.16191238343254", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "158.32766203875508", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "39.19393965909876", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "39.193939367252604", + "unit": "cfm" + } + ], + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "39.193939700701776", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "476.916413373081", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "617.9026662614342", + "unit": "cfm" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "721.9887816300616", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-26": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ERV 1-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - RT - Retail Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-27": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-28": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "ERV 1-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - RT - Retail Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + } + }, + "19-29": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "HVAC System 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + } + }, + "19-30": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-31": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ERV 1-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - RT - Retail Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-32": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-33": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ERV 1-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - RT - Retail Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-34": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-35": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-36": { + "Multifamily 1 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 System 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 1 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 2 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Multifamily 3 Corridor System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "HVAC System 26": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF1 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF2 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Stair System Unit Heater - MF3 - Multifamily Stair Zn 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail System 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-37": { + "Sample 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "21-1": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-1 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-2": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-2 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-3": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_sized_using_coincident_load", + "value": "True" + } + ], + "messages": "" + } + }, + "21-4": { + "Boiler1a (HWNatDrft)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "boiler_draft_type_b", + "value": "NATURAL" + } + ], + "messages": "" + }, + "Boiler1b (HWNatDrft)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "boiler_draft_type_b", + "value": "NATURAL" + } + ], + "messages": "" + } + }, + "21-5": { + "Sample 1 Automated Review": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_loop_conditioned_zone_area", + "value": "33743.999999999985 foot ** 2" + }, + { + "variable": "num_boilers", + "value": "2" + }, + { + "variable": "boiler_capacity_list", + "value": "['600183.8750000001 Btu/hr', '600183.8750000001 Btu/hr']" + } + ], + "messages": "" + } + }, + "21-6": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "boiler_1_operation_lower_limit", + "value": "0.0", + "unit": "Btu/hr" + }, + { + "variable": "boiler_1_operation_upper_limit", + "value": "600183.8750000001", + "unit": "Btu/hr" + }, + { + "variable": "boiler_1_rated_capacity", + "value": "600183.8750000001", + "unit": "Btu/hr" + }, + { + "variable": "boiler_2_operation_lower_limit", + "value": "600183.8750000001", + "unit": "Btu/hr" + }, + { + "variable": "boiler_2_operation_upper_limit", + "value": "1200367.7500000002", + "unit": "Btu/hr" + }, + { + "variable": "boiler_2_rated_capacity", + "value": "600183.8750000001", + "unit": "Btu/hr" + } + ], + "messages": "" + } + }, + "21-7": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "design_supply_temperature", + "value": "180.00000000000006", + "unit": "F" + }, + { + "variable": "design_return_temperature", + "value": "129.99999999999994", + "unit": "F" + }, + { + "variable": "required_supply_temperature", + "value": "180", + "unit": "F" + }, + { + "variable": "required_return_temperature", + "value": "130", + "unit": "F" + } + ], + "messages": "" + } + }, + "21-8": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "temperature_reset_type_b", + "value": "OUTSIDE_AIR_RESET" + }, + { + "variable": "design_outdoor_high_for_loop_supply_reset_temperature_b", + "value": "50.000000000000036", + "unit": "F" + }, + { + "variable": "design_outdoor_low_for_loop_supply_reset_temperature_b", + "value": "20.000000000000004", + "unit": "F" + }, + { + "variable": "design_supply_temperature_at_outdoor_high_b", + "value": "150.0", + "unit": "F" + }, + { + "variable": "design_supply_temperature_at_outdoor_low_b", + "value": "180.00000000000006", + "unit": "F" + }, + { + "variable": "required_outdoor_high_for_loop_supply_reset_temperature_b", + "value": "50", + "unit": "F" + }, + { + "variable": "required_outdoor_low_for_loop_supply_reset_temperature_b", + "value": "20", + "unit": "F" + }, + { + "variable": "required_supply_temperature_at_outdoor_high_b", + "value": "150", + "unit": "F" + }, + { + "variable": "required_supply_temperature_at_outdoor_low_b", + "value": "180", + "unit": "F" + } + ], + "messages": "" + } + }, + "21-9": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "pump_power_per_flow_rate", + "value": "19.038097695949432", + "unit": "W/gpm" + }, + { + "variable": "required_pump_power_per_flow_rate", + "value": "19.0", + "unit": "W/gpm" + } + ], + "messages": "" + } + }, + "21-10": { + "HW Loop Pump": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "pump_speed_control_type", + "value": "FIXED_SPEED" + }, + { + "variable": "target_speed_control_type", + "value": "FIXED_SPEED" + } + ], + "messages": "" + } + }, + "21-11": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_child_loops", + "value": "False" + } + ], + "messages": "" + } + }, + "21-12": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "flow_control", + "value": "VARIABLE_FLOW" + }, + { + "variable": "operation", + "value": "CONTINUOUS" + } + ], + "messages": "" + } + }, + "21-13": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_flow_fraction", + "value": "0.25" + }, + { + "variable": "required_minimum_flow_fraction", + "value": "0.25" + } + ], + "messages": "" + } + }, + "21-14": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-15": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-16": { + "Sample 1 Automated Review": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hhw_loop_count", + "value": "1" + } + ], + "messages": "" + } + }, + "21-17": { + "Boiler1a (HWNatDrft)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "boiler_rated_capacity_b", + "value": "600183.8750000001", + "unit": "Btu/hr" + }, + { + "variable": "boiler_annual_fuel_utilization_efficiency_b", + "value": "None" + }, + { + "variable": "boiler_thermal_efficiency_b", + "value": "0.7500018551991576" + }, + { + "variable": "boiler_combustion_efficiency_b", + "value": "0.7700018551991576" + } + ], + "messages": "" + }, + "Boiler1b (HWNatDrft)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "boiler_rated_capacity_b", + "value": "600183.8750000001", + "unit": "Btu/hr" + }, + { + "variable": "boiler_annual_fuel_utilization_efficiency_b", + "value": "None" + }, + { + "variable": "boiler_thermal_efficiency_b", + "value": "0.7500018551991576" + }, + { + "variable": "boiler_combustion_efficiency_b", + "value": "0.7700018551991576" + } + ], + "messages": "" + } + }, + "21-18": { + "Boiler1a (HWNatDrft)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "boiler_energy_source_type_b", + "value": "NATURAL_GAS" + } + ], + "messages": "" + }, + "Boiler1b (HWNatDrft)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "boiler_energy_source_type_b", + "value": "NATURAL_GAS" + } + ], + "messages": "" + } + }, + "22-1": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-2": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-3": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-4": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-5": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-6": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-7": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-8": { + "Sample 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-9": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-10": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-11": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-12": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-13": { + }, + "22-14": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-15": { + }, + "22-16": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-17": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-18": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-19": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-20": { + "Sample 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-21": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-22": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-23": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-24": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-25": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-26": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-27": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-28": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-29": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-30": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-31": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-32": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-33": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-34": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-35": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-35 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-36": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-37": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-37 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-38": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-38 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-39": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-39 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-40": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-41": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "23-1": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-2": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-3": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-4": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "hvac_sys_5_or_7_list", + "value": "[]" + }, + { + "variable": "hvac_systems_serving_lab_zones", + "value": "{'lab_zones_only': [], 'lab_and_other': []}" + } + ], + "messages": "" + } + }, + "23-5": { + "MF1 - Multifamily Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 2 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 3 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 4 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 5 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Zn 6 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 2 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 3 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 4 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 5 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Zn 6 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 2 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 3 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 4 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 5 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Zn 6 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Corridor Zn MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Corridor Zn MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Corridor Zn MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Stair Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF1 - Multifamily Stair Zn 2 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Stair Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF2 - Multifamily Stair Zn 2 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Stair Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "MF3 - Multifamily Stair Zn 2 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Stair Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 1 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 2 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RT - Retail Zn 3 MainTerminal": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "23-6": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-7": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-8": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-9": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-10": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-11": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-12": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "23-13": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-14": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-15": { + "Sample 1 Automated Review - Proposed - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-16": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "23-17": { + "Sample 1 Automated Review": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + } +} \ No newline at end of file diff --git a/test/integrated_tests/Sample 1/tmpcadj7tf6.html b/test/integrated_tests/Sample 1/tmpcadj7tf6.html new file mode 100644 index 0000000000..d3477cb4f5 --- /dev/null +++ b/test/integrated_tests/Sample 1/tmpcadj7tf6.html @@ -0,0 +1,22 @@ + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/test/integrated_tests/Sample 2/Sample 2.zip b/test/integrated_tests/Sample 2/Sample 2.zip new file mode 100644 index 0000000000..7823f83976 Binary files /dev/null and b/test/integrated_tests/Sample 2/Sample 2.zip differ diff --git a/test/integrated_tests/Sample 2/expected_outcomes.json b/test/integrated_tests/Sample 2/expected_outcomes.json new file mode 100644 index 0000000000..a2760afd49 --- /dev/null +++ b/test/integrated_tests/Sample 2/expected_outcomes.json @@ -0,0 +1,11607 @@ +{ + "1-1": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `output_bpf_set` value must exist." + } + }, + "1-2": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index` value must exist." + } + }, + "1-3": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index_target` value must exist." + } + }, + "1-4": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `pci_target_set` value must exist." + } + }, + "1-5": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Ruleset expects exactly one PBP value to be used in the project." + } + }, + "1-6": { + "Sample 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_renewable", + "value": "False" + } + ], + "messages": "" + } + }, + "1-7": { + "Sample 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 2 in index context does not match the one Sample 2 - 19 - Proposed in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[0].surfaces[6].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[0].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[2].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].surfaces[6]: data object Floor 04 in index context does not match the one Floor 03 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].surfaces[6].optical_properties: data object Floor 04 OpticalProps in index context does not match the one Floor 03 OpticalProps in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].surfaces[6].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].surfaces[8].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[6].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].surfaces[8].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[9].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].surfaces[2]: data object Floor 03 in index context does not match the one Floor 04 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].surfaces[2].optical_properties: data object Floor 03 OpticalProps in index context does not match the one Floor 04 OpticalProps in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].surfaces[2].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11]: data object Crawl ZN in index context does not match the one CRAWL ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11].infiltration: data object Crawl ZN Infil in index context does not match the one CRAWL ZN Infil in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11].infiltration.algorithm_name: index context data: None does not equal to compare context data: Air Change Method', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object BL SYS 3 01 in index context does not match the one Ductless Split AC in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object BL SYS 3 01 FanSys in index context does not match the one Ductless Split AC FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object BL SYS 3 01 SupplyFan in index context does not match the one Ductless Split AC SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.air_economizer: data object BL SYS 3 01 AirEconomizer in index context does not match the one Ductless Split AC AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].heating_system: data object BL SYS 3 01 HeatSys in index context does not match the one Ductless Split AC HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].cooling_system: data object BL SYS 3 01 CoolSys in index context does not match the one Ductless Split AC CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1]: data object BL SYS 3 02 in index context does not match the one EUH in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system: data object BL SYS 3 02 FanSys in index context does not match the one EUH FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.supply_fans[0]: data object BL SYS 3 02 SupplyFan in index context does not match the one EUH SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].heating_system: data object BL SYS 3 02 HeatSys in index context does not match the one EUH HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2]: data object BL SYS 3 03 in index context does not match the one EUH - G - Plumbing zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system: data object BL SYS 3 03 FanSys in index context does not match the one EUH FanSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.supply_fans[0]: data object BL SYS 3 03 SupplyFan in index context does not match the one EUH SupplyFan--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].heating_system: data object BL SYS 3 03 HeatSys in index context does not match the one EUH HeatSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3]: data object BL SYS 3 04 in index context does not match the one RTU - 1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system: data object BL SYS 3 04 FanSys in index context does not match the one RTU - 1 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.supply_fans[0]: data object BL SYS 3 04 SupplyFan in index context does not match the one RTU - 1 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.return_fans[0]: data object BL SYS 3 04 ReturnFan in index context does not match the one RTU - 1 ReturnFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.air_economizer: data object BL SYS 3 04 AirEconomizer in index context does not match the one RTU - 1 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].heating_system: data object BL SYS 3 04 HeatSys in index context does not match the one RTU - 1 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].cooling_system: data object BL SYS 3 04 CoolSys in index context does not match the one RTU - 1 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object BL SYS 3 05 in index context does not match the one RTU - 2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object BL SYS 3 05 FanSys in index context does not match the one RTU - 2 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object BL SYS 3 05 SupplyFan in index context does not match the one RTU - 2 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.return_fans[0]: data object BL SYS 3 05 ReturnFan in index context does not match the one RTU - 2 ReturnFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.air_economizer: data object BL SYS 3 05 AirEconomizer in index context does not match the one RTU - 2 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].heating_system: data object BL SYS 3 05 HeatSys in index context does not match the one RTU - 2 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].cooling_system: data object BL SYS 3 05 CoolSys in index context does not match the one RTU - 2 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].schedules[1]: data object 90.1 C3.5.5.3 Lib CLGSPT in index context does not match the one Back of House HTGSPT in compare context', 'path: $.ruleset_model_descriptions[0].schedules[2]: data object 90.1 C3.5.5.3 Lib EQP in index context does not match the one COMMUNITY CTR LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[3]: data object 90.1 C3.5.5.3 Lib HTGSPT in index context does not match the one COMNET App C1 EQP in compare context', 'path: $.ruleset_model_descriptions[0].schedules[4]: data object 90.1 C3.5.5.3 Lib INF in index context does not match the one COMNET App C1 LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[5]: data object 90.1 C3.5.5.3 Lib LTG in index context does not match the one Cust 1 Elec Season Sched in compare context', 'path: $.ruleset_model_descriptions[0].schedules[6]: data object 90.1 C3.5.5.3 Lib OCC in index context does not match the one Custom Gas Season Sched in compare context', 'path: $.ruleset_model_descriptions[0].schedules[7]: data object 90.1 C3.5.5.3 Lib ON-OFF in index context does not match the one DHW Eqp NRes Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[8]: data object Back of House HTGSPT in index context does not match the one Dirt Depre Windows in compare context', 'path: $.ruleset_model_descriptions[0].schedules[9]: data object COMMUNITY CTR LTG in index context does not match the one EXT LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[10]: data object COMNET App C1 EQP in index context does not match the one G - Bldg InsLt Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[11]: data object COMNET App C1 LTG in index context does not match the one Hourly Report Schedule in compare context', 'path: $.ruleset_model_descriptions[0].schedules[12]: data object Cust 1 Elec Season Sched in index context does not match the one OFFICE LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[13]: data object Custom Gas Season Sched in index context does not match the one PR Lib CLGSPT in compare context', 'path: $.ruleset_model_descriptions[0].schedules[14]: data object DHW Eqp NRes Sch in index context does not match the one PR Lib EQP in compare context', 'path: $.ruleset_model_descriptions[0].schedules[15]: data object Dirt Depre Windows in index context does not match the one PR Lib HTGSPT in compare context', 'path: $.ruleset_model_descriptions[0].schedules[16]: data object EXT LTG in index context does not match the one PR Lib INF in compare context', 'path: $.ruleset_model_descriptions[0].schedules[17]: data object G - Bldg InsLt Sch in index context does not match the one PR Lib LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[18]: data object Hourly Report Schedule in index context does not match the one PR Lib OCC in compare context', 'path: $.ruleset_model_descriptions[0].schedules[19]: data object MIN OA in index context does not match the one PR Lib ON-OFF in compare context', 'path: $.ruleset_model_descriptions[0].schedules[20]: data object OFFICE LTG in index context does not match the one PR Lib SHW in compare context', 'path: $.ruleset_model_descriptions[0].schedules[21]: data object PR CLGSPT in index context does not match the one PR MIN OA in compare context', 'path: $.ruleset_model_descriptions[0].schedules[22]: data object PR EQP in index context does not match the one S1 Sys1 (PSZ) Cool Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[23]: data object PR HTGSPT in index context does not match the one S1 Sys1 (PSZ) Fan Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[24]: data object PR Lib INF in index context does not match the one S1 Sys1 (PSZ) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[25]: data object PR Lib LTG in index context does not match the one STORAGE LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[26]: data object PR Lib OCC in index context does not match the one ZG0-S1 (PSZ) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[27]: data object PR Lib ON-OFF in index context does not match the one ZG0-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].constructions[6]: data object BL BGW in index context does not match the one Air Wall in compare context', 'path: $.ruleset_model_descriptions[0].constructions[7]: data object BL EXP FLOOR in index context does not match the one BL BGW in compare context', 'path: $.ruleset_model_descriptions[0].constructions[8]: data object BL NR E WALL in index context does not match the one BL EXP FLOOR in compare context', 'path: $.ruleset_model_descriptions[0].constructions[9]: data object BL ROOF in index context does not match the one BL NR E WALL in compare context', 'path: $.ruleset_model_descriptions[0].constructions[10]: data object Cell Wall in index context does not match the one BL ROOF in compare context', 'path: $.ruleset_model_descriptions[0].constructions[11]: data object Construction 21 in index context does not match the one CODE EXP FLR in compare context', 'path: $.ruleset_model_descriptions[0].constructions[12]: data object Dbl Lyr Unins Mtl Door in index context does not match the one Cell Wall in compare context', 'path: $.ruleset_model_descriptions[0].constructions[13]: data object EL2 UFCons (G.NNW1.U2) in index context does not match the one Construction 21 in compare context', 'path: $.ruleset_model_descriptions[0].constructions[14]: data object Ext Wall in index context does not match the one Dbl Lyr Unins Mtl Door in compare context', 'path: $.ruleset_model_descriptions[0].constructions[15]: data object G - IFlSP Construction in index context does not match the one EL2 UFCons (G.NNW1.U2) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[16]: data object G - IFlr Construction in index context does not match the one Ext Wall in compare context', 'path: $.ruleset_model_descriptions[0].constructions[17]: data object G - UFCons (G.NW2.U3) in index context does not match the one G - IFlSP Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[18]: data object G - UFCons (G.SE1.U2) in index context does not match the one G - IFlr Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[19]: data object HP AEDG ROOF in index context does not match the one G - UFCons (G.NW2.U3) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[20]: data object HP AEDG WALL in index context does not match the one G - UFCons (G.SE1.U2) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[21]: data object PR Floor in index context does not match the one HP AEDG ROOF in compare context', 'path: $.ruleset_model_descriptions[0].constructions[22]: data object PR NR E WALL in index context does not match the one HP AEDG WALL in compare context', 'path: $.ruleset_model_descriptions[0].constructions[23]: data object PR ROOF in index context does not match the one PR Floor in compare context', 'path: $.ruleset_model_descriptions[0].constructions[24]: data object Roof1 in index context does not match the one PR NR E WALL in compare context', 'path: $.ruleset_model_descriptions[0].materials[32]: data object MinWool Batt R7 (IN01)_0.46 in index context does not match the one MinWool Batt R7 (IN01)_0.41 in compare context', 'path: $.ruleset_model_descriptions[0].materials[33]: data object Polyisocyanurate 2in in index context does not match the one MinWool Batt R7 (IN01)_0.46 in compare context', 'path: $.ruleset_model_descriptions[0].materials[34]: data object Polyisocyanurate 2in_0.15 in index context does not match the one Polyisocyanurate 2in in compare context', 'path: $.ruleset_model_descriptions[0].materials[37]: data object Polyisocyanurate 2in_0.3 in index context does not match the one Polyisocyanurate 2in_0.2 in compare context', 'path: $.ruleset_model_descriptions[0].materials[38]: data object Polyisocyanurate 2in_0.38 in index context does not match the one Polyisocyanurate 2in_0.3 in compare context', 'path: $.ruleset_model_descriptions[0].materials[39]: data object Polyisocyanurate 2in_0.52 in index context does not match the one Polyisocyanurate 2in_0.38 in compare context', 'path: $.ruleset_model_descriptions[0].materials[40]: data object Polyisocyanurate 3in in index context does not match the one Polyisocyanurate 2in_0.52 in compare context', 'path: $.ruleset_model_descriptions[0].materials[41]: data object Polyisocyanurate 3in_0.291 in index context does not match the one Polyisocyanurate 3in in compare context', 'path: $.ruleset_model_descriptions[0].materials[42]: data object Stucco 1in (SC01) in index context does not match the one Polyisocyanurate 3in_0.291 in compare context', 'path: $.ruleset_model_descriptions[0].materials[43]: data object Stucco 1in (SC01)_0.033 in index context does not match the one Stucco 1in (SC01) in compare context', 'path: $.ruleset_model_descriptions[0].materials[44]: data object Surf Air Film Horiz (AL03) in index context does not match the one Stucco 1in (SC01)_0.033 in compare context', 'path: $.ruleset_model_descriptions[0].materials[45]: data object Surf Air Film Vert (AL01) in index context does not match the one Surf Air Film Horiz (AL03) in compare context']" + } + ], + "messages": "path: $.ruleset_model_descriptions[0]: data object Sample 2 in index context does not match the one Sample 2 - 19 - Proposed in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[0].surfaces[6].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[0].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[2].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].surfaces[6]: data object Floor 04 in index context does not match the one Floor 03 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].surfaces[6].optical_properties: data object Floor 04 OpticalProps in index context does not match the one Floor 03 OpticalProps in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].surfaces[6].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].surfaces[8].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[6].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].surfaces[8].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[9].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].surfaces[2]: data object Floor 03 in index context does not match the one Floor 04 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].surfaces[2].optical_properties: data object Floor 03 OpticalProps in index context does not match the one Floor 04 OpticalProps in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].surfaces[2].adjacent_zone: index context data: Crawl ZN does not equal to compare context data: CRAWL ZN; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].thermostat_heating_setpoint_schedule: index context data: PR HTGSPT does not equal to compare context data: PR Lib HTGSPT; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11]: data object Crawl ZN in index context does not match the one CRAWL ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11].infiltration: data object Crawl ZN Infil in index context does not match the one CRAWL ZN Infil in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11].infiltration.algorithm_name: index context data: None does not equal to compare context data: Air Change Method; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object BL SYS 3 01 in index context does not match the one Ductless Split AC in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object BL SYS 3 01 FanSys in index context does not match the one Ductless Split AC FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object BL SYS 3 01 SupplyFan in index context does not match the one Ductless Split AC SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.air_economizer: data object BL SYS 3 01 AirEconomizer in index context does not match the one Ductless Split AC AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].heating_system: data object BL SYS 3 01 HeatSys in index context does not match the one Ductless Split AC HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].cooling_system: data object BL SYS 3 01 CoolSys in index context does not match the one Ductless Split AC CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1]: data object BL SYS 3 02 in index context does not match the one EUH in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system: data object BL SYS 3 02 FanSys in index context does not match the one EUH FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.supply_fans[0]: data object BL SYS 3 02 SupplyFan in index context does not match the one EUH SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].heating_system: data object BL SYS 3 02 HeatSys in index context does not match the one EUH HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2]: data object BL SYS 3 03 in index context does not match the one EUH - G - Plumbing zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system: data object BL SYS 3 03 FanSys in index context does not match the one EUH FanSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.supply_fans[0]: data object BL SYS 3 03 SupplyFan in index context does not match the one EUH SupplyFan--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].heating_system: data object BL SYS 3 03 HeatSys in index context does not match the one EUH HeatSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3]: data object BL SYS 3 04 in index context does not match the one RTU - 1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system: data object BL SYS 3 04 FanSys in index context does not match the one RTU - 1 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.supply_fans[0]: data object BL SYS 3 04 SupplyFan in index context does not match the one RTU - 1 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.return_fans[0]: data object BL SYS 3 04 ReturnFan in index context does not match the one RTU - 1 ReturnFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.air_economizer: data object BL SYS 3 04 AirEconomizer in index context does not match the one RTU - 1 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].heating_system: data object BL SYS 3 04 HeatSys in index context does not match the one RTU - 1 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].cooling_system: data object BL SYS 3 04 CoolSys in index context does not match the one RTU - 1 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object BL SYS 3 05 in index context does not match the one RTU - 2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object BL SYS 3 05 FanSys in index context does not match the one RTU - 2 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object BL SYS 3 05 SupplyFan in index context does not match the one RTU - 2 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.return_fans[0]: data object BL SYS 3 05 ReturnFan in index context does not match the one RTU - 2 ReturnFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.air_economizer: data object BL SYS 3 05 AirEconomizer in index context does not match the one RTU - 2 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].heating_system: data object BL SYS 3 05 HeatSys in index context does not match the one RTU - 2 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].cooling_system: data object BL SYS 3 05 CoolSys in index context does not match the one RTU - 2 CoolSys in compare context; path: $.ruleset_model_descriptions[0].schedules[1]: data object 90.1 C3.5.5.3 Lib CLGSPT in index context does not match the one Back of House HTGSPT in compare context; path: $.ruleset_model_descriptions[0].schedules[2]: data object 90.1 C3.5.5.3 Lib EQP in index context does not match the one COMMUNITY CTR LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[3]: data object 90.1 C3.5.5.3 Lib HTGSPT in index context does not match the one COMNET App C1 EQP in compare context; path: $.ruleset_model_descriptions[0].schedules[4]: data object 90.1 C3.5.5.3 Lib INF in index context does not match the one COMNET App C1 LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[5]: data object 90.1 C3.5.5.3 Lib LTG in index context does not match the one Cust 1 Elec Season Sched in compare context; path: $.ruleset_model_descriptions[0].schedules[6]: data object 90.1 C3.5.5.3 Lib OCC in index context does not match the one Custom Gas Season Sched in compare context; path: $.ruleset_model_descriptions[0].schedules[7]: data object 90.1 C3.5.5.3 Lib ON-OFF in index context does not match the one DHW Eqp NRes Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[8]: data object Back of House HTGSPT in index context does not match the one Dirt Depre Windows in compare context; path: $.ruleset_model_descriptions[0].schedules[9]: data object COMMUNITY CTR LTG in index context does not match the one EXT LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[10]: data object COMNET App C1 EQP in index context does not match the one G - Bldg InsLt Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[11]: data object COMNET App C1 LTG in index context does not match the one Hourly Report Schedule in compare context; path: $.ruleset_model_descriptions[0].schedules[12]: data object Cust 1 Elec Season Sched in index context does not match the one OFFICE LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[13]: data object Custom Gas Season Sched in index context does not match the one PR Lib CLGSPT in compare context; path: $.ruleset_model_descriptions[0].schedules[14]: data object DHW Eqp NRes Sch in index context does not match the one PR Lib EQP in compare context; path: $.ruleset_model_descriptions[0].schedules[15]: data object Dirt Depre Windows in index context does not match the one PR Lib HTGSPT in compare context; path: $.ruleset_model_descriptions[0].schedules[16]: data object EXT LTG in index context does not match the one PR Lib INF in compare context; path: $.ruleset_model_descriptions[0].schedules[17]: data object G - Bldg InsLt Sch in index context does not match the one PR Lib LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[18]: data object Hourly Report Schedule in index context does not match the one PR Lib OCC in compare context; path: $.ruleset_model_descriptions[0].schedules[19]: data object MIN OA in index context does not match the one PR Lib ON-OFF in compare context; path: $.ruleset_model_descriptions[0].schedules[20]: data object OFFICE LTG in index context does not match the one PR Lib SHW in compare context; path: $.ruleset_model_descriptions[0].schedules[21]: data object PR CLGSPT in index context does not match the one PR MIN OA in compare context; path: $.ruleset_model_descriptions[0].schedules[22]: data object PR EQP in index context does not match the one S1 Sys1 (PSZ) Cool Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[23]: data object PR HTGSPT in index context does not match the one S1 Sys1 (PSZ) Fan Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[24]: data object PR Lib INF in index context does not match the one S1 Sys1 (PSZ) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[25]: data object PR Lib LTG in index context does not match the one STORAGE LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[26]: data object PR Lib OCC in index context does not match the one ZG0-S1 (PSZ) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[27]: data object PR Lib ON-OFF in index context does not match the one ZG0-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].constructions[6]: data object BL BGW in index context does not match the one Air Wall in compare context; path: $.ruleset_model_descriptions[0].constructions[7]: data object BL EXP FLOOR in index context does not match the one BL BGW in compare context; path: $.ruleset_model_descriptions[0].constructions[8]: data object BL NR E WALL in index context does not match the one BL EXP FLOOR in compare context; path: $.ruleset_model_descriptions[0].constructions[9]: data object BL ROOF in index context does not match the one BL NR E WALL in compare context; path: $.ruleset_model_descriptions[0].constructions[10]: data object Cell Wall in index context does not match the one BL ROOF in compare context; path: $.ruleset_model_descriptions[0].constructions[11]: data object Construction 21 in index context does not match the one CODE EXP FLR in compare context; path: $.ruleset_model_descriptions[0].constructions[12]: data object Dbl Lyr Unins Mtl Door in index context does not match the one Cell Wall in compare context; path: $.ruleset_model_descriptions[0].constructions[13]: data object EL2 UFCons (G.NNW1.U2) in index context does not match the one Construction 21 in compare context; path: $.ruleset_model_descriptions[0].constructions[14]: data object Ext Wall in index context does not match the one Dbl Lyr Unins Mtl Door in compare context; path: $.ruleset_model_descriptions[0].constructions[15]: data object G - IFlSP Construction in index context does not match the one EL2 UFCons (G.NNW1.U2) in compare context; path: $.ruleset_model_descriptions[0].constructions[16]: data object G - IFlr Construction in index context does not match the one Ext Wall in compare context; path: $.ruleset_model_descriptions[0].constructions[17]: data object G - UFCons (G.NW2.U3) in index context does not match the one G - IFlSP Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[18]: data object G - UFCons (G.SE1.U2) in index context does not match the one G - IFlr Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[19]: data object HP AEDG ROOF in index context does not match the one G - UFCons (G.NW2.U3) in compare context; path: $.ruleset_model_descriptions[0].constructions[20]: data object HP AEDG WALL in index context does not match the one G - UFCons (G.SE1.U2) in compare context; path: $.ruleset_model_descriptions[0].constructions[21]: data object PR Floor in index context does not match the one HP AEDG ROOF in compare context; path: $.ruleset_model_descriptions[0].constructions[22]: data object PR NR E WALL in index context does not match the one HP AEDG WALL in compare context; path: $.ruleset_model_descriptions[0].constructions[23]: data object PR ROOF in index context does not match the one PR Floor in compare context; path: $.ruleset_model_descriptions[0].constructions[24]: data object Roof1 in index context does not match the one PR NR E WALL in compare context; path: $.ruleset_model_descriptions[0].materials[32]: data object MinWool Batt R7 (IN01)_0.46 in index context does not match the one MinWool Batt R7 (IN01)_0.41 in compare context; path: $.ruleset_model_descriptions[0].materials[33]: data object Polyisocyanurate 2in in index context does not match the one MinWool Batt R7 (IN01)_0.46 in compare context; path: $.ruleset_model_descriptions[0].materials[34]: data object Polyisocyanurate 2in_0.15 in index context does not match the one Polyisocyanurate 2in in compare context; path: $.ruleset_model_descriptions[0].materials[37]: data object Polyisocyanurate 2in_0.3 in index context does not match the one Polyisocyanurate 2in_0.2 in compare context; path: $.ruleset_model_descriptions[0].materials[38]: data object Polyisocyanurate 2in_0.38 in index context does not match the one Polyisocyanurate 2in_0.3 in compare context; path: $.ruleset_model_descriptions[0].materials[39]: data object Polyisocyanurate 2in_0.52 in index context does not match the one Polyisocyanurate 2in_0.38 in compare context; path: $.ruleset_model_descriptions[0].materials[40]: data object Polyisocyanurate 3in in index context does not match the one Polyisocyanurate 2in_0.52 in compare context; path: $.ruleset_model_descriptions[0].materials[41]: data object Polyisocyanurate 3in_0.291 in index context does not match the one Polyisocyanurate 3in in compare context; path: $.ruleset_model_descriptions[0].materials[42]: data object Stucco 1in (SC01) in index context does not match the one Polyisocyanurate 3in_0.291 in compare context; path: $.ruleset_model_descriptions[0].materials[43]: data object Stucco 1in (SC01)_0.033 in index context does not match the one Stucco 1in (SC01) in compare context; path: $.ruleset_model_descriptions[0].materials[44]: data object Surf Air Film Horiz (AL03) in index context does not match the one Stucco 1in (SC01)_0.033 in compare context; path: $.ruleset_model_descriptions[0].materials[45]: data object Surf Air Film Vert (AL01) in index context does not match the one Surf Air Film Horiz (AL03) in compare context" + } + }, + "1-8": { + "Sample 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 2 - 19 - Proposed in index context does not match the one Sample 2 - 19 in compare context']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object Sample 2 - 19 - Proposed in index context does not match the one Sample 2 - 19 in compare context" + ] + } + }, + "1-9": { + "Sample 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 2 in index context does not match the one Sample 2 - 1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.minimum_outdoor_airflow: index context data: 12.405640450791156 liter / second does not equal to compare context data: 12.405640231614663 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.minimum_outdoor_airflow: index context data: 11.965859832234397 liter / second does not equal to compare context data: 11.965860088574908 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.minimum_outdoor_airflow: index context data: 3.66056448678986 liter / second does not equal to compare context data: 3.6605642937421647 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.minimum_outdoor_airflow: index context data: 62.11448135647218 liter / second does not equal to compare context data: 62.114481228536505 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.minimum_outdoor_airflow: index context data: 96.88706817215753 liter / second does not equal to compare context data: 96.88706424790088 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.minimum_outdoor_airflow: index context data: 80.1515422036887 liter / second does not equal to compare context data: 80.15153951708322 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.minimum_outdoor_airflow: index context data: 168.39456986304825 liter / second does not equal to compare context data: 168.3945753649538 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.minimum_outdoor_airflow: index context data: 15.594696230010637 liter / second does not equal to compare context data: 15.59469606246173 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.minimum_outdoor_airflow: index context data: 59.204200407457634 liter / second does not equal to compare context data: 59.20420132529921 liter / second', 'path: $.ruleset_model_descriptions[0].service_water_heating_equipment[0].tank.type: index context data: COMMERCIAL_STORAGE does not equal to compare context data: OTHER']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object Sample 2 in index context does not match the one Sample 2 - 1 in compare context", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.minimum_outdoor_airflow: index context data: 12.405640450791156 liter / second does not equal to compare context data: 12.405640231614663 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.minimum_outdoor_airflow: index context data: 11.965859832234397 liter / second does not equal to compare context data: 11.965860088574908 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.minimum_outdoor_airflow: index context data: 3.66056448678986 liter / second does not equal to compare context data: 3.6605642937421647 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.minimum_outdoor_airflow: index context data: 62.11448135647218 liter / second does not equal to compare context data: 62.114481228536505 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.minimum_outdoor_airflow: index context data: 96.88706817215753 liter / second does not equal to compare context data: 96.88706424790088 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.minimum_outdoor_airflow: index context data: 80.1515422036887 liter / second does not equal to compare context data: 80.15153951708322 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.minimum_outdoor_airflow: index context data: 168.39456986304825 liter / second does not equal to compare context data: 168.3945753649538 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.minimum_outdoor_airflow: index context data: 15.594696230010637 liter / second does not equal to compare context data: 15.59469606246173 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.minimum_outdoor_airflow: index context data: 59.204200407457634 liter / second does not equal to compare context data: 59.20420132529921 liter / second", + "path: $.ruleset_model_descriptions[0].service_water_heating_equipment[0].tank.type: index context data: COMMERCIAL_STORAGE does not equal to compare context data: OTHER" + ] + } + }, + "4-1": { + "1 - Vestibule zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Elec/IT zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - BOH Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Plumbing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Manager's Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Staff Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Custodial Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Staff Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Children Reading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Teen Reading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Adult Reading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-2": { + "1 - Vestibule zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Elec/IT zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - BOH Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Plumbing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Manager's Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Staff Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Custodial Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Staff Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Children Reading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Teen Reading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Adult Reading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-11": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No fan operating schedules found for zone 'CRAWL ZN', and no fallback assumed." + } + }, + "4-14": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-1": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "no_of_rmds", + "value": "6" + }, + { + "variable": "no_of_output_instance", + "value": "5" + }, + { + "variable": "rotation_expected_b", + "value": "True" + }, + { + "variable": "has_baseline_0", + "value": "True" + }, + { + "variable": "has_baseline_90", + "value": "True" + }, + { + "variable": "has_baseline_180", + "value": "True" + }, + { + "variable": "has_baseline_270", + "value": "True" + }, + { + "variable": "has_proposed", + "value": "True" + }, + { + "variable": "has_user", + "value": "True" + }, + { + "variable": "has_baseline_0_output", + "value": "True" + }, + { + "variable": "has_baseline_90_output", + "value": "True" + }, + { + "variable": "has_baseline_180_output", + "value": "True" + }, + { + "variable": "has_baseline_270_output", + "value": "True" + }, + { + "variable": "has_proposed_output", + "value": "True" + }, + { + "variable": "has_user_output", + "value": "True" + } + ], + "messages": "" + } + }, + "5-2": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surfaces_casting_shade_ids", + "value": "['1 - South Wall (G.S1.E1)', '1 - Roof (G.S1.E2)', '1 - South Wall (G.S3.E4)', '1 - South Wall (G.S3.E5)', '1 - Roof (G.S3.E6)', 'G - West Wall (G.NW2.E7)', 'G - NNW Wall (G.NW2.E8)', '1 - West Wall (G.WSW5.E9)', '1 - South Wall (G.WSW5.E10)', '1 - Roof (G.WSW5.E11)', 'G - South Wall (G.SE1.E1)', 'G - East Wall (G.SE1.E2)', 'G - South Wall (G.SE1.E3)', 'G - East Wall (G.SE1.E4)', 'G - NNW Wall (G.SE1.E5)', 'G - West Wall (G.SE1.E6)', '1 - Roof (G.C2.E3)', '1 - South Wall (G.S4.E7)', '1 - Roof (G.S4.E8)', '1 - West Wall (G.NW6.E12)', '1 - NNW Wall (G.NW6.E13)', '1 - Roof (G.NW6.E14)', '1 - NNW Wall (G.NNW7.E15)', '1 - West Wall (G.NNW7.E16)', '1 - Roof (G.NNW7.E17)', '1 - NNW Wall (G.NNW8.E18)', '1 - Roof (G.NNW8.E19)', '1 - NNW Wall (G.NNW9.E20)', '1 - Roof (G.NNW9.E21)', '1 - East Wall (G.NE10.E22)', '1 - NNW Wall (G.NE10.E23)', '1 - Roof (G.NE10.E24)', '1 - South Wall (G.SE11.E25)', '1 - East Wall (G.SE11.E26)', '1 - Roof (G.SE11.E27)']" + } + ], + "messages": "" + } + }, + "5-3": { + "1 - Roof (G.S1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.S3.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.WSW5.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.C2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.S4.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.NW6.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW7.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW8.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW9.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.NE10.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Roof (G.SE11.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-4": { + "1 - Roof (G.S1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.S3.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.WSW5.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.C2.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.S4.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.NW6.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW7.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW8.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW9.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.NE10.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Roof (G.SE11.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.0622345262112234", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-5": { + "CRAWL WALL 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "CRAWL WALL 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "CRAWL WALL 03": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "CRAWL WALL 04": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "CRAWL WALL 05": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "CRAWL WALL 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "CRAWL WALL 07": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-6": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-7": { + "1 - South Wall (G.S1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.S3.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.S3.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.S3.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.S3.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NW2.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - NNW Wall (G.NW2.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW5.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.WSW5.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - South Wall (G.SE1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - East Wall (G.SE1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - South Wall (G.SE1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - East Wall (G.SE1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - NNW Wall (G.SE1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.SE1.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.SE1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.SE1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S4.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.S4.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.S4.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.S4.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.S4.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S4.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.S4.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.NW6.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NW6.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW7.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - West Wall (G.NNW7.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW7.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW7.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW7.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.NNW7.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.NNW7.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.NNW7.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.NNW7.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW8.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW8.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW8.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW8.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW9.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW9.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - ENE Wall (G.NNW9.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.NE10.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NE10.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.SE11.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.SE11.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - North Wall (G.SE11.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.SE11.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.SE11.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-8": { + "1 - South Wall (G.S1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NW2.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - NNW Wall (G.NW2.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW5.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WSW5.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.SE1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.SE1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.SE1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.SE1.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - NNW Wall (G.SE1.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.SE1.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S4.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.NW6.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NW6.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW7.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.NNW7.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW8.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW9.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.NE10.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NE10.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.SE11.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.SE11.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12172777048194602", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-9": { + "Floor 03": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Floor 03 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "Floor 02": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Floor 02 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "1 - Flr (G.WSW5.I21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "1 - Flr (G.WSW5.I21) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "Floor 04": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Floor 04 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "Floor 01": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Floor 01 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "1 - Flr (G.NW6.I22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "1 - Flr (G.NW6.I22) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "1 - Flr (G.NNW7.I23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "1 - Flr (G.NNW7.I23) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "1 - Flr (G.NNW8.I35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "1 - Flr (G.NNW8.I35) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "1 - Flr (G.NNW9.I39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "1 - Flr (G.NNW9.I39) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "1 - Flr (G.NE10.I42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "1 - Flr (G.NE10.I42) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "Floor 05": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Floor 05 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + } + }, + "5-10": { + "Floor 03": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.8130000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.069", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Floor 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.8130000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.069", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Flr (G.WSW5.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.051053030716080715", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Floor 04": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.8130000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.069", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Floor 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.8130000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.069", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Flr (G.NW6.I22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.051053030716080715", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Flr (G.NNW7.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.051053030716080715", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Flr (G.NNW8.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.10325514040635961", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Flr (G.NNW9.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.051053030716080715", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "1 - Flr (G.NE10.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.051053030716080715", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Floor 05": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.8130000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.069", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-11": { + "G - Flr (G.NW2.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.SE1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "CWL FLR": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-12": { + "G - Flr (G.NW2.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "F-factor for slab on grade construction 'G - UFCons (G.NW2.U3)' is missing" + }, + "G - Flr (G.SE1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "F-factor for slab on grade construction 'G - UFCons (G.SE1.U2)' is missing" + } + }, + "5-13": { + "1 - East Wall (G.S3.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.S3.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.S3.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.S3.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.SE1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.SE1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "CWL FLR": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "construction:EL2 UFCons (G.NNW1.U2) is missing f_factor" + }, + "CRAWL WALL 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "baseline_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "CRAWL WALL 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "baseline_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "CRAWL WALL 03": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "baseline_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "CRAWL WALL 04": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "baseline_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "CRAWL WALL 05": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "baseline_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "CRAWL WALL 06": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "baseline_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "CRAWL WALL 07": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "BELOW-GRADE WALL" + }, + { + "variable": "baseline_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_c_factor", + "value": "0.11667666855191412", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C2.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8200000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8200000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C2.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C2.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.S4.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.S4.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.S4.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.S4.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S4.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.S4.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW7.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW7.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW7.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.NNW7.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.NNW7.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW7.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.NNW7.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.NNW7.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW8.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW8.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.NNW8.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.NNW9.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - ENE Wall (G.NNW9.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "6.670000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.SE11.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "6.670000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.SE11.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "6.670000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.SE11.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.07930000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-14": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:LIBRARY missing:is_all_new" + } + } + }, + "5-15": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:LIBRARY missing:is_all_new", + "BASELINE_0_MISSING_DATA": "id:LIBRARY missing:is_all_new" + } + } + }, + "5-16": { + "1 - South Wall (G.S1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "101.78442156000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "101.78442156000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "123.56487156000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "123.56487156000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.NW2.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - NNW Wall (G.NW2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW5.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.WSW5.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - South Wall (G.SE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - East Wall (G.SE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - South Wall (G.SE1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - East Wall (G.SE1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - NNW Wall (G.SE1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.SE1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.S4.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "32.86271556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.86271556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - West Wall (G.NW6.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NW6.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW7.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "78.83741556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "78.83741556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - West Wall (G.NNW7.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW8.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "80.19116556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "80.19116556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NNW9.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "97.29116556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "97.29116556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - East Wall (G.NE10.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "153.64249999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "153.64249999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "The vertical fenestration is not distributed across baseline opaque surfaces in the same proportion as in the proposed design. Verify if envelope is existing or altered and can be excluded from this check." + }, + "1 - NNW Wall (G.NE10.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "72.54996556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "72.54996556", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.SE11.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "323.14497156000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "323.14497156000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - East Wall (G.SE11.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "355.50000000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "1482.3691924800003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "355.50000000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "1461.3691924800003", + "unit": "ft2" + } + ], + "messages": "" + } + }, + "5-17": { + "1 - Vestibule zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Multipurpose zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Elec/IT zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - BOH Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Crawl ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Manager's Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Staff Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Custodial Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Staff Lounge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Restroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Children Reading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Teen Reading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Adult Reading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-18": { + "1 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.S1.E1.W1) missing:dynamic_glazing_type" + } + }, + "1 - South Win (G.S4.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.S4.E7.W1) missing:dynamic_glazing_type" + } + }, + "1 - NNW Win (G.NNW7.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NNW7.E15.W1) missing:dynamic_glazing_type" + } + }, + "1 - NNW Win (G.NNW8.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NNW8.E18.W1) missing:dynamic_glazing_type" + } + }, + "1 - NNW Win (G.NNW9.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NNW9.E20.W1) missing:dynamic_glazing_type" + } + }, + "Window 13": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 13 missing:dynamic_glazing_type" + } + }, + "Window 11": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 11 missing:dynamic_glazing_type" + } + }, + "Window 12": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 12 missing:dynamic_glazing_type" + } + }, + "1 - NNW Win (G.NE10.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NE10.E23.W1) missing:dynamic_glazing_type" + } + }, + "1 - South Win (G.SE11.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.SE11.E25.W1) missing:dynamic_glazing_type" + } + }, + "Window 10": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 10 missing:dynamic_glazing_type" + } + }, + "1 - South Win (G.S3.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.S3.E5.W1) missing:dynamic_glazing_type" + } + }, + "1 - West Door (G.WSW5.E9.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - West Door (G.WSW5.E9.D2) missing:dynamic_glazing_type" + } + }, + "G - East Door (G.SE1.E4.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:G - East Door (G.SE1.E4.D1) missing:dynamic_glazing_type" + } + } + }, + "5-19": { + "1 - South Win (G.S1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5077065574809766", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Win (G.S3.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5113554089700741", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW5.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "G - South Wall (G.SE1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "G - East Wall (G.SE1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - South Win (G.S4.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5715757352324423", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW7.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5161372332368017", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW8.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5393010854457037", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW9.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5393010854457037", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 13": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4459308807134896", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 11": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4459308807134896", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 12": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4459308807134896", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NE10.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.5189919493032764", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Win (G.SE11.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4936675582411514", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 10": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4459308807134896", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-20": { + "1 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "1 - South Win (G.S3.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW5.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:1 - West Door (G.WSW5.E9.D2) missing:solar_heat_gain_coefficient" + } + }, + "G - South Wall (G.SE1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:G - South Door (G.SE1.E3.D1) missing:solar_heat_gain_coefficient" + } + }, + "G - East Wall (G.SE1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:G - East Door (G.SE1.E4.D1) missing:solar_heat_gain_coefficient" + } + }, + "1 - South Win (G.S4.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW7.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW8.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW9.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 13": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 11": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 12": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NE10.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "1 - South Win (G.SE11.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + } + }, + "5-21": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-22": { + "1 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "1 - South Win (G.S3.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "1 - West Door (G.WSW5.E9.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:1 - West Door (G.WSW5.E9.D2) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "G - South Door (G.SE1.E3.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:G - South Door (G.SE1.E3.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "G - East Door (G.SE1.E4.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:G - East Door (G.SE1.E4.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "1 - South Win (G.S4.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW7.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW8.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NNW9.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 13": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 11": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 12": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "1 - NNW Win (G.NE10.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "1 - South Win (G.SE11.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + } + }, + "5-23": { + "1 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades" + } + }, + "1 - South Win (G.S3.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.S3.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - South Win (G.S3.E5.W1) missing:has_manual_interior_shades" + } + }, + "1 - West Door (G.WSW5.E9.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - West Door (G.WSW5.E9.D2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - West Door (G.WSW5.E9.D2) missing:has_manual_interior_shades" + } + }, + "G - South Door (G.SE1.E3.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "G - East Door (G.SE1.E4.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:G - East Door (G.SE1.E4.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:G - East Door (G.SE1.E4.D1) missing:has_manual_interior_shades" + } + }, + "1 - South Win (G.S4.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.S4.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - South Win (G.S4.E7.W1) missing:has_manual_interior_shades" + } + }, + "1 - NNW Win (G.NNW7.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NNW7.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - NNW Win (G.NNW7.E15.W1) missing:has_manual_interior_shades" + } + }, + "1 - NNW Win (G.NNW8.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NNW8.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - NNW Win (G.NNW8.E18.W1) missing:has_manual_interior_shades" + } + }, + "1 - NNW Win (G.NNW9.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NNW9.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - NNW Win (G.NNW9.E20.W1) missing:has_manual_interior_shades" + } + }, + "Window 13": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 13 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 13 missing:has_manual_interior_shades" + } + }, + "Window 11": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 11 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 11 missing:has_manual_interior_shades" + } + }, + "Window 12": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 12 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 12 missing:has_manual_interior_shades" + } + }, + "1 - NNW Win (G.NE10.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - NNW Win (G.NE10.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - NNW Win (G.NE10.E23.W1) missing:has_manual_interior_shades" + } + }, + "1 - South Win (G.SE11.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:1 - South Win (G.SE11.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:1 - South Win (G.SE11.E25.W1) missing:has_manual_interior_shades" + } + }, + "Window 10": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 10 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 10 missing:has_manual_interior_shades" + } + } + }, + "5-24": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_skylight_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_b", + "value": "7061.868049999999", + "unit": "ft2" + }, + { + "variable": "total_skylight_area_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_p", + "value": "7061.86805", + "unit": "ft2" + }, + { + "variable": "skylight_roof_ratio_b", + "value": "0.0 dimensionless" + }, + { + "variable": "skylight_roof_ratio_p", + "value": "0.0 dimensionless" + } + ], + "messages": "" + } + }, + "5-25": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-26": { + "LIBRARY": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-27": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-28": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-29": { + "1 - Roof (G.S1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.S3.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.WSW5.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.C2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.S4.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NW6.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW7.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW8.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW9.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NE10.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.SE11.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-30": { + "1 - Roof (G.S1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.C2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.S4.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NW6.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW7.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW8.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW9.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.NE10.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.SE11.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.S3.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "1 - Roof (G.WSW5.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-31": { + "1 - Roof (G.S1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.S3.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.WSW5.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.C2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.S4.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.NW6.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW7.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW8.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.NNW9.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.NE10.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "1 - Roof (G.SE11.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + } + }, + "5-32": { + "1 - Roof (G.S1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.C2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.S4.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.NW6.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.NNW7.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.NNW8.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.NNW9.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.NE10.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.SE11.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.S3.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "1 - Roof (G.WSW5.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.35" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.35" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.35 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + } + }, + "5-33": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "failing_infiltration_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-34": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "The 'zones' objects between baseline and proposed don't match." + } + }, + "5-35": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "939.2597344833332", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "2308.39409696", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "20610.66158", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "1.0000000000000002 cfm/ft2" + }, + { + "variable": "target_air_leakage_rate_75pa_b", + "value": "20610.66158", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "5-36": { + "Crawl ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + } + }, + "5-37": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "939.2597344833332", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "1385.036458176", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "20610.66158", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "0.6 cfm / foot ** 2" + }, + { + "variable": "building_total_measured_air_leakage_rate", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "target_air_leakage_rate_75pa_p", + "value": "12366.396948", + "unit": "cfm" + }, + { + "variable": "empty_measured_air_leakage_rate_flow_flag", + "value": "True" + } + ], + "messages": "The building total air leakage rate is not equal to the required proposed design air leakage rate at 75Pa with a Conversion Factor of 0.112 as per section G3.1.1.4. and Measured air leakage rate is not entered for all conditioned and semi-heated zones. Verify the proposed air leakage rate is modeled correctly." + } + }, + "5-38": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "ground_temperature_schedule", + "value": "None" + } + ], + "messages": "A ground temperature schedule was not found for the project." + } + }, + "5-39": { + "1 - South Wall (G.S1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - South Wall (G.S3.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - West Door (G.WSW5.E9.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.48320565704183877", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "G - South Door (G.SE1.E3.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.48320565704183877", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "G - East Door (G.SE1.E4.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.48320565704183877", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "1 - South Wall (G.S4.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - NNW Wall (G.NNW7.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - NNW Wall (G.NNW8.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - NNW Wall (G.NNW9.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - East Wall (G.NE10.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - NNW Wall (G.NE10.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - South Wall (G.SE11.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "1 - East Wall (G.SE11.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-40": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "6-1": { + "LIBRARY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "allowable_LPD_BAM", + "value": "1.3000000000000003", + "unit": "W/ft2" + }, + { + "variable": "building_segment_design_lighting_wattage", + "value": "3261.9705870000016", + "unit": "W" + }, + { + "variable": "check_BAM_flag", + "value": "True" + }, + { + "variable": "total_building_segment_area_p", + "value": "10557.228000000001", + "unit": "ft2" + }, + { + "variable": "allowable_lighting_wattage_SBS", + "value": "9145.074819999998", + "unit": "W" + } + ], + "messages": "Project passes based on building area method. Verify if project uses building area method." + } + }, + "6-2": { + "CRAWL SP": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "6-3": { + "1 - Vestibule": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.39", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.39", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Manager's Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.18750000000000003", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.18750000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Staff Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.18750000000000003", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.18750000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Custodial Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.18750000000000003", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.18750000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Staff Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7400000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7400000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.36", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.36", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Children Reading": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Teen Reading": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Adult Reading": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Elec/IT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.38000000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.38000000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - BOH Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.49000000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.49000000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Plumbing": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.38000000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.38000000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "CRAWL SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + } + }, + "6-4": { + "1 - Vestibule": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Elec/IT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - BOH Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8100000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Plumbing": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.27", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "Crawl ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "1 - Manager's Office": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.05", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Staff Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Custodial Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Staff Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Restroom": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.77", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Children Reading": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Teen Reading": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Adult Reading": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + } + }, + "6-5": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Default Building missing:building_open_schedule", + "BASELINE_0_MISSING_DATA": "id:Default Building missing:building_open_schedule" + } + } + }, + "6-6": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "ids_for_interior_lighting_instances_with_daylighting_control", + "value": "[]" + } + ], + "messages": "" + } + }, + "6-7": { + "1 - Vestibule zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1 - Manager's Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Staff Office zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1 - Custodial Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Staff Lounge zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1 - Restroom zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1 - Children Reading zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1 - Teen Reading zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1 - Adult Reading zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1 - Multipurpose zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "G - Elec/IT zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - BOH Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Plumbing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "CRAWL ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + } + }, + "6-8": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "6-9": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "10-1": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be only one HVAC system serving each zone in the baseline RMD." + } + }, + "10-7": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "10-14": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "10-15": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be one system serving each zone in the baseline RMD." + } + }, + "11-1": { + "Sample 2 - 19 - Proposed": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "proposed_user_comparison", + "value": "[]" + }, + { + "variable": "proposed_baseline_comparison", + "value": "['path: $.service_water_heating_equipment[DHW Plant 1 Wtr Htr (1)].tank.type: index context data: OTHER does not equal to compare context data: COMMERCIAL_STORAGE', 'path: $.service_water_heating_equipment[DHW Plant 1 Wtr Htr (1)].input_power: index context data: 9708.860717019727 watt does not equal to compare context data: 23445.691178506946 watt']" + } + ], + "messages": "path: $.service_water_heating_equipment[DHW Plant 1 Wtr Htr (1)].input_power: index context data: 9708.860717019727 watt does not equal to compare context data: 23445.691178506946 watt" + } + }, + "11-6": { + "DHW Plant 1 Loop (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "piping_losses_modeled_b", + "value": "[False]" + } + ], + "messages": "" + } + }, + "11-7": { + "LIBRARY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "expected_swh_equip_type_list", + "value": "[]" + }, + { + "variable": "swh_equip_type_list_b", + "value": "[]" + } + ], + "messages": "" + } + }, + "11-8": { + "LIBRARY": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "swh_bat_b", + "value": "LIBRARY" + }, + { + "variable": "num_swh_systems_b", + "value": "0" + }, + { + "variable": "num_of_bldg_segment_b", + "value": "1" + }, + { + "variable": "is_referenced_in_other_bats_b", + "value": "True" + }, + { + "variable": "num_other_swh_bat_segment_b", + "value": "0" + } + ], + "messages": "" + } + }, + "11-9": { + "LIBRARY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Check that the baseline Service Water Heating System for Building Area Type is sized according to ASHRAE Standard 90.1 2019, Section 7.4.1." + } + }, + "11-10": { + "DHW Plant 1 Wtr Htr (1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "swh_fuel_type_b", + "value": "ELECTRICITY" + }, + { + "variable": "swh_tank_type_b", + "value": "COMMERCIAL_STORAGE" + }, + { + "variable": "swh_input_power_b", + "value": "23445.691178506946 watt" + }, + { + "variable": "swh_tank_storage_volume_b", + "value": "82.00000000000003 gallon" + }, + { + "variable": "swh_setpoint_temperature_b", + "value": "48.888888888888914 degree_Celsius" + }, + { + "variable": "modeled_efficiency_b", + "value": "None" + }, + { + "variable": "modeled_standby_loss_b", + "value": "None" + }, + { + "variable": "swh_input_power_per_volume_b", + "value": "975.6098513719512 Btu/h/gallon" + }, + { + "variable": "expected_efficiency_b", + "value": "None" + }, + { + "variable": "expected_efficiency_metric_b", + "value": "None" + }, + { + "variable": "standby_loss_target_b", + "value": "0.6292682926829267" + }, + { + "variable": "standby_loss_target_metric_b", + "value": "STANDBY_LOSS_FRACTION" + }, + { + "variable": "standby_loss_is_estimated_b", + "value": "False" + } + ], + "messages": "The storage tank is between 55 and 100 gallons with a capacity <= 12kW (40945 btu/hr). The minimum efficiency requirements in 90.1 Section 7.4.2 point to 10 CFR 430 which provides a heat pump efficiency for water heaters in this capacity range which is not consistent with the efficiency of an electric resistance storage water heater which is the only electric SWH system type associated with the baseline for ASHRAE 90.1 Appendix G. Consequently, this rule was not able to be assessed for this service water heater. Note that the specific requirements of 10 CFR 430 can be found in ASHRAE 90.1 Appendix F Table F-2.\nBased on the provided details, STANDBY_LOSS_FRACTION is an expected efficiency metric for this water heater, however it was not provided. Note that the specific requirements of 10 CFR 430 can be found in ASHRAE 90.1 Appendix F Table F-2." + } + }, + "11-11": { + "LIBRARY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "swh_use_loads_b", + "value": "0.0" + } + ], + "messages": "" + } + }, + "11-12": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "buildings:Default Building is missing building_open_schedule" + } + }, + "11-13": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "is_applicable", + "value": "False" + }, + { + "variable": "service_water_heating_btu_per_sf_per_year", + "value": "0.0", + "unit": "Btu/ft2" + } + ], + "messages": "" + } + }, + "11-14": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "11-15": { + "DHW Plant 1 Loop (1) Load1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_swh_use_none_b", + "value": "False" + }, + { + "variable": "is_swh_use_none_p", + "value": "False" + }, + { + "variable": "swh_use_b", + "value": "None" + }, + { + "variable": "swh_use_p", + "value": "None" + }, + { + "variable": "swh_use_id_b", + "value": "DHW Plant 1 Loop (1) Load1" + }, + { + "variable": "swh_use_id_p", + "value": "DHW Plant 1 Loop (1) Load1" + }, + { + "variable": "swh_use_use_units_b", + "value": "None" + }, + { + "variable": "swh_use_use_units_p", + "value": "None" + }, + { + "variable": "swh_use_multiplier_schedule_b", + "value": "PR Lib SHW" + }, + { + "variable": "swh_use_multiplier_schedule_p", + "value": "PR Lib SHW" + }, + { + "variable": "swh_use_temperature_at_fixture_b", + "value": "135.00000000000006", + "unit": "F" + }, + { + "variable": "swh_use_temperature_at_fixture_p", + "value": "135.00000000000006", + "unit": "F" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_b", + "value": "None" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_p", + "value": "None" + }, + { + "variable": "swh_use_served_by_distribution_system_b", + "value": "{'id': 'DHW Plant 1 Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_served_by_distribution_system_p", + "value": "{'id': 'DHW Plant 1 Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_design_supply_water_temperature_b", + "value": "None" + }, + { + "variable": "swh_use_design_supply_water_temperature_p", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_b", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_p", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_b", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_p", + "value": "None" + } + ], + "messages": "" + } + }, + "11-16": { + "DHW Plant 1 Wtr Htr (1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "11-17": { + "LIBRARY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_uses:DHW Plant 1 Loop (1) Load1 is missing use" + } + }, + "12-1": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "reduced_misc_equipment_power", + "value": "[]" + }, + { + "variable": "unexpected_misc_equipment_power", + "value": "[]" + }, + { + "variable": "compliance_path", + "value": "None" + } + ], + "messages": "The proposed building miscellaneous equipment load is less than the baseline, which is only permitted when the model is being used to quantify performance that exceeds the requirements of Standard 90.1." + } + }, + "12-2": { + "1 - Vestibule MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Multipurpose MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Elec/IT MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - BOH Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Plumbing MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "CRAWL SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Manager's Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Staff Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Custodial Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Staff Lounge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Restroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Children Reading MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LIBRARY_READING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Teen Reading MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LIBRARY_READING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Adult Reading MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LIBRARY_READING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + } + }, + "12-3": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "spaces:CRAWL SP is missing lighting_space_type" + } + }, + "12-4": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-1": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-2": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-3": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-4": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-5": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-6": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-7": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "18-1": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "18-2": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "18-3": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "target_baseline_systems_b", + "value": "{'1 - Vestibule zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Multipurpose zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, 'G - Elec/IT zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - BOH Storage zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'G - Plumbing zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, \"1 - Manager's Office zn\": {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Staff Office zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Custodial Office zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Staff Lounge zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Restroom zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Children Reading zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Teen Reading zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}, '1 - Adult Reading zn': {'expected_system_type': 'Sys-3', 'system_origin': 'OTHER_NON_RESIDENTIAL CZ_3b_3c_or_4_to_8 < 25,000 ft2 3 floors or fewer'}}" + } + ], + "messages": "" + } + }, + "19-1": { + "RTU - 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "RTU - 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Ductless Split AC": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "EUH": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + } + }, + "19-2": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "List path $.fluid_loops[*] in rule 19-2 is either incorrect or has no data." + } + }, + "19-3": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-4": { + "1 - Vestibule zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "G - Elec/IT zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - BOH Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "G - Plumbing zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "Crawl ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Manager's Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Staff Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Custodial Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Staff Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Children Reading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Teen Reading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + }, + "1 - Adult Reading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:PR Lib INF is missing hourly_cooling_design_day" + } + }, + "19-5": { + "Sample 2 - 19 - Proposed": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "unmet_load_hours_heating_p", + "value": "27.0", + "unit": "hr" + }, + { + "variable": "unmet_load_hours_cooling_p", + "value": "0.0", + "unit": "hr" + }, + { + "variable": "coincident_unmet_load_hours_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-6": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:Sample 2 Output missing:unmet_load_hours" + } + } + }, + "19-7": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "zones:1 - Vestibule zn is missing air_distribution_effectiveness" + } + }, + "19-8": { + "RTU - 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "33.043289999140825", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "29.999784366576815", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "RTU - 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "125.44659635409516", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "19.999999999999996", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Ductless Split AC": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999361063190848", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "EUH": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0001579751101435", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "26.286063479178438", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "5.00004042200574", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "25.354221120684315", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "5.000083815271142", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "7.756296891810052", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "4.999589029836432", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "131.61313246091595", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "30.000108275496167", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000048397283818", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "205.29207132731335", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "9.999999171883866", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "169.8315000081957", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "10.00004504614978", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "356.8078867453187", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "10.000000952925573", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999396778798785", + "unit": "people/kft2" + } + ], + "messages": "" + } + }, + "19-9": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-10": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-11": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-12": { + "RTU - 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "RTU - 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "Ductless Split AC": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-13": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-14": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-15": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-16": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-17": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-18": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-19": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-20": { + "RTU - 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "167.3374772071839", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "126.1183321475983", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "166.18746257787723", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "127.2683467769049", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for RTU - 1.The expected modeled baseline supply, return, exhaust, and relief kW is 567.0550807543467 british_thermal_unit / hour, 434.257563955712 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "RTU - 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "723.9939570426943", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "723.3047485351564", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "723.6493527889253", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "723.6493527889253", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for RTU - 2.The expected modeled baseline supply, return, exhaust, and relief kW is 2469.193739517268 british_thermal_unit / hour, 2469.193739517268 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively. ::TOLERANCE::" + }, + "Ductless Split AC": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "124.87139552831653", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "124.87139552831653", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "EUH": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "112.76534199714662", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "112.76534199714662", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "222.90866076946264", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "168.0010110139847", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "221.37672651183206", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "169.53294527161538", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 01.The expected modeled baseline supply, return, exhaust, and relief kW is 755.3686396196936 british_thermal_unit / hour, 578.4703399419702 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "260.216236114502", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "196.1188614368439", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "258.42791156197774", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "197.90718598936812", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 02.The expected modeled baseline supply, return, exhaust, and relief kW is 881.7925130259625 british_thermal_unit / hour, 675.2872544791227 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 03": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "105.86915165185931", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "79.79109138250352", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "105.14157058029274", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "80.51867245407007", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 03.The expected modeled baseline supply, return, exhaust, and relief kW is 358.75788023484427 british_thermal_unit / hour, 274.74107614633937 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 04": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "469.9410498142243", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "354.1835248470307", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "466.7114009845531", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "357.4131736767019", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 04.The expected modeled baseline supply, return, exhaust, and relief kW is 1592.4851795017432 british_thermal_unit / hour, 1219.5441997734024 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 05": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "262.2325718402863", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "197.63854146003726", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "260.4303987039091", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "199.44071459641444", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 05.The expected modeled baseline supply, return, exhaust, and relief kW is 888.6252818182852 british_thermal_unit / hour, 680.5198705538777 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 06": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "1083.7237834930422", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "816.7771100997926", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "1076.2759197973073", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "824.2249737955274", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 06.The expected modeled baseline supply, return, exhaust, and relief kW is 3672.4053616777746 british_thermal_unit / hour, 2812.371955293272 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 07": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "1009.0925693511965", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "760.5293393135072", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "1002.1576174273633", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "767.46429123734", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 07.The expected modeled baseline supply, return, exhaust, and relief kW is 3419.503251712239 british_thermal_unit / hour, 2618.6964942661093 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 08": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "1959.6942663192751", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "1476.9755601882937", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "1946.2263822310636", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "1490.443444276505", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 08.The expected modeled baseline supply, return, exhaust, and relief kW is 6640.799138654089 british_thermal_unit / hour, 5085.603417634152 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "EUH - G - Plumbing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "136.01605594158175", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "136.01605594158175", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + } + }, + "19-21": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-22": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-23": { + "1 - Vestibule zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Elec/IT zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - BOH Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Plumbing zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Crawl ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Manager's Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Staff Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Custodial Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Staff Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Children Reading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Teen Reading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Adult Reading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + } + }, + "19-24": { + "RTU - 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1151.8374052372092", + "unit": "cfm" + } + ], + "messages": "" + }, + "RTU - 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "125.44659501244314", + "unit": "cfm" + } + ], + "messages": "" + }, + "Ductless Split AC": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "fan_system:EUH FanSys is missing operation_during_occupied" + }, + "EUH - G - Plumbing zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "fan_system:EUH FanSys--1 is missing operation_during_occupied" + } + }, + "19-25": { + "RTU - 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "33.043289999140825", + "unit": "cfm" + } + ], + "messages": "" + }, + "RTU - 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "125.44659635409516", + "unit": "cfm" + } + ], + "messages": "" + }, + "Ductless Split AC": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "26.286063479178438", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "25.354221120684315", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "7.756296891810052", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "131.61313246091595", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "205.29207132731335", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "169.8315000081957", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "356.8078867453187", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-26": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-27": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-28": { + "RTU - 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "RTU - 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-29": { + "RTU - 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "RTU - 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "Ductless Split AC": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "EUH": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + } + }, + "19-30": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "19-31": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-32": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-33": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-34": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-35": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 02": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 03": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 04": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 05": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 06": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 07": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 08": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-36": { + "RTU - 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU - 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Ductless Split AC": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 03": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 04": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 05": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 07": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 08": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH - G - Plumbing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-37": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "21-1": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-1 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-2": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-2 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-3": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-4": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-5": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-6": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-7": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-8": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "21-9": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-10": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-11": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-12": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-13": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-14": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-15": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-16": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-17": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "21-18": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-1": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-2": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-3": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-4": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-5": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-6": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-7": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-8": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-9": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-10": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-11": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-12": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-13": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-14": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-15": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-16": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-17": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-18": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-19": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-20": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-21": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-22": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-23": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-24": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-25": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-26": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-27": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-28": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-29": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-30": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-31": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-32": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-33": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-34": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-35": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-35 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-36": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "22-37": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-37 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-38": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-38 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-39": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-39 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-40": { + "Sample 2 - 19 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-41": { + "Sample 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "23-1": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-2": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-3": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-4": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-5": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-6": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-7": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-8": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-9": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-10": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-11": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-12": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-13": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-14": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-15": { + "Sample 2 - 19 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-16": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + }, + "23-17": { + "Sample 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC RTU - 1 does not match any baseline system type." + } + } +} \ No newline at end of file diff --git a/test/integrated_tests/Sample 2/tmpx8j9yo9p.html b/test/integrated_tests/Sample 2/tmpx8j9yo9p.html new file mode 100644 index 0000000000..130cafe211 --- /dev/null +++ b/test/integrated_tests/Sample 2/tmpx8j9yo9p.html @@ -0,0 +1,22 @@ + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/test/integrated_tests/Sample 3/Sample 3.zip b/test/integrated_tests/Sample 3/Sample 3.zip new file mode 100644 index 0000000000..f708f1dd9f Binary files /dev/null and b/test/integrated_tests/Sample 3/Sample 3.zip differ diff --git a/test/integrated_tests/Sample 3/expected_outcomes.json b/test/integrated_tests/Sample 3/expected_outcomes.json new file mode 100644 index 0000000000..ce7494deb3 --- /dev/null +++ b/test/integrated_tests/Sample 3/expected_outcomes.json @@ -0,0 +1,160111 @@ +{ + "1-1": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `output_bpf_set` value must exist." + } + }, + "1-2": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index` value must exist." + } + }, + "1-3": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index_target` value must exist." + } + }, + "1-4": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `pci_target_set` value must exist." + } + }, + "1-5": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Ruleset expects exactly one PBP value to be used in the project." + } + }, + "1-6": { + "Sample 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_renewable", + "value": "False" + } + ], + "messages": "" + } + }, + "1-7": { + "Sample 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 3 in index context does not match the one Sample 3 - Final - 7 - Proposed in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[29].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[30].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[32].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[33].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[34].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[35].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[36].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[37].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[38].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[40].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[41].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[42].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[43].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[44].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[45].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[46].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[47].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[48].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[49].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[50].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[51].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[52].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[53].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[54].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object 1 - Kitchen - Sys3 in index context does not match the one AHU-1,2,3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object 1 - Kitchen - Sys3 FanSys in index context does not match the one AHU-1,2,3 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object 1 - Kitchen - Sys3 SupplyFan in index context does not match the one AHU-1,2,3 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.air_economizer: data object 1 - Kitchen - Sys3 AirEconomizer in index context does not match the one AHU-1,2,3 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].cooling_system: data object 1 - Kitchen - Sys3 CoolSys in index context does not match the one AHU-1,2,3 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1]: data object 1 - Sys7 in index context does not match the one AHU-10 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system: data object 1 - Sys7 FanSys in index context does not match the one AHU-10 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.supply_fans[0]: data object 1 - Sys7 SupplyFan in index context does not match the one AHU-10 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.return_fans[0]: data object 1 - Sys7 ReturnFan in index context does not match the one AHU-10 ReturnFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.air_economizer: data object 1 - Sys7 AirEconomizer in index context does not match the one AHU-10 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].cooling_system: data object 1 - Sys7 CoolSys in index context does not match the one AHU-10 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].preheat_system: data object 1 - Sys7 PreheatSys in index context does not match the one AHU-10 PreheatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2]: data object 2 - Kitchen - Sys3 in index context does not match the one AHU-4/5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system: data object 2 - Kitchen - Sys3 FanSys in index context does not match the one AHU-4/5 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.supply_fans[0]: data object 2 - Kitchen - Sys3 SupplyFan in index context does not match the one AHU-4/5 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.air_economizer: data object 2 - Kitchen - Sys3 AirEconomizer in index context does not match the one AHU-4/5 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].cooling_system: data object 2 - Kitchen - Sys3 CoolSys in index context does not match the one AHU-4/5 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3]: data object 2 - Sys7 in index context does not match the one AHU-6/7 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system: data object 2 - Sys7 FanSys in index context does not match the one AHU-6/7 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.supply_fans[0]: data object 2 - Sys7 SupplyFan in index context does not match the one AHU-6/7 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.return_fans[0]: data object 2 - Sys7 ReturnFan in index context does not match the one AHU-6/7 ReturnFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.air_economizer: data object 2 - Sys7 AirEconomizer in index context does not match the one AHU-6/7 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].cooling_system: data object 2 - Sys7 CoolSys in index context does not match the one AHU-6/7 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].preheat_system: data object 2 - Sys7 PreheatSys in index context does not match the one AHU-6/7 PreheatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object 3 - Sys7 in index context does not match the one AHU-8 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object 3 - Sys7 FanSys in index context does not match the one AHU-8 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object 3 - Sys7 SupplyFan in index context does not match the one AHU-8 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.return_fans[0]: data object 3 - Sys7 ReturnFan in index context does not match the one AHU-8 ReturnFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.air_economizer: data object 3 - Sys7 AirEconomizer in index context does not match the one AHU-8 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].cooling_system: data object 3 - Sys7 CoolSys in index context does not match the one AHU-8 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].preheat_system: data object 3 - Sys7 PreheatSys in index context does not match the one AHU-8 PreheatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5]: data object 3.170 - Sys7 in index context does not match the one AHU-9 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system: data object 3.170 - Sys7 FanSys in index context does not match the one AHU-9 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.supply_fans[0]: data object 3.170 - Sys7 SupplyFan in index context does not match the one AHU-9 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.air_economizer: data object 3.170 - Sys7 AirEconomizer in index context does not match the one AHU-9 AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].cooling_system: data object 3.170 - Sys7 CoolSys in index context does not match the one AHU-9 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6]: data object 4 - Sys7 in index context does not match the one FCU in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system: data object 4 - Sys7 FanSys in index context does not match the one FCU FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.supply_fans[0]: data object 4 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].cooling_system: data object 4 - Sys7 CoolSys in index context does not match the one FCU CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7]: data object 4.170 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 2 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system: data object 4.170 - Sys7 FanSys in index context does not match the one FCU FanSys--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.supply_fans[0]: data object 4.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].cooling_system: data object 4.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8]: data object 5 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 4 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system: data object 5 - Sys7 FanSys in index context does not match the one FCU FanSys--16 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.supply_fans[0]: data object 5 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--16 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].cooling_system: data object 5 - Sys7 CoolSys in index context does not match the one FCU CoolSys--16 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9]: data object 5.170 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 5 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system: data object 5.170 - Sys7 FanSys in index context does not match the one FCU FanSys--17 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.supply_fans[0]: data object 5.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--17 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].cooling_system: data object 5.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--17 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10]: data object 6 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 6 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system: data object 6 - Sys7 FanSys in index context does not match the one FCU FanSys--18 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.supply_fans[0]: data object 6 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--18 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].cooling_system: data object 6 - Sys7 CoolSys in index context does not match the one FCU CoolSys--18 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11]: data object 6.170 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 8 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system: data object 6.170 - Sys7 FanSys in index context does not match the one FCU FanSys--19 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.supply_fans[0]: data object 6.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--19 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].cooling_system: data object 6.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--19 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12]: data object 7 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system: data object 7 - Sys7 FanSys in index context does not match the one FCU FanSys--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.supply_fans[0]: data object 7 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].cooling_system: data object 7 - Sys7 CoolSys in index context does not match the one FCU CoolSys--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13]: data object 7.170 - Sys7 in index context does not match the one FCU - 1 - Stairs zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system: data object 7.170 - Sys7 FanSys in index context does not match the one FCU FanSys--13 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.supply_fans[0]: data object 7.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--13 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].cooling_system: data object 7.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--13 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14]: data object 8 - Sys7 in index context does not match the one FCU - 2 - Elec/Mech 2 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system: data object 8 - Sys7 FanSys in index context does not match the one FCU FanSys--24 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.supply_fans[0]: data object 8 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--24 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].cooling_system: data object 8 - Sys7 CoolSys in index context does not match the one FCU CoolSys--24 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15]: data object 8.170 - Sys7 in index context does not match the one FCU - 2 - Elec/Mech zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system: data object 8.170 - Sys7 FanSys in index context does not match the one FCU FanSys--21 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.supply_fans[0]: data object 8.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--21 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].cooling_system: data object 8.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--21 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16]: data object G - Sys7 in index context does not match the one FCU - 2 - Stairs 2 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system: data object G - Sys7 FanSys in index context does not match the one FCU FanSys--23 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.supply_fans[0]: data object G - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--23 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].cooling_system: data object G - Sys7 CoolSys in index context does not match the one FCU CoolSys--23 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17]: data object P - Sys7 in index context does not match the one FCU - 2 - Stairs zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system: data object P - Sys7 FanSys in index context does not match the one FCU FanSys--22 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.supply_fans[0]: data object P - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--22 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].cooling_system: data object P - Sys7 CoolSys in index context does not match the one FCU CoolSys--22 in compare context', 'path: $.ruleset_model_descriptions[0].schedules[2]: data object BOH Cooling Sch in index context does not match the one 90.1 App G UM G-E SWH in compare context', 'path: $.ruleset_model_descriptions[0].schedules[3]: data object BOH Heating Sch in index context does not match the one BOH Cooling Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[4]: data object CHWST Reset Sch in index context does not match the one BOH Heating Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[5]: data object COMMUNITY CTR LTG in index context does not match the one CHWST Reset Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[12]: data object G - Bldg Occup Sch in index context does not match the one Disabled Load Mang Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[13]: data object HOSPITAL DHW in index context does not match the one G - Bldg Occup Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[22]: data object MEDICAL KIT LTG in index context does not match the one Load Management Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[23]: data object MEDICAL KIT OCC in index context does not match the one MEDICAL KIT LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[24]: data object MEDICAL OPER LTG in index context does not match the one MEDICAL KIT OCC in compare context', 'path: $.ruleset_model_descriptions[0].schedules[25]: data object MEDICAL OPER OCC in index context does not match the one MEDICAL OPER LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[26]: data object MEDICAL ROOM LTG in index context does not match the one MEDICAL OPER OCC in compare context', 'path: $.ruleset_model_descriptions[0].schedules[27]: data object MEDICAL ROOM OCC in index context does not match the one MEDICAL ROOM LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[28]: data object MEDICAL TREAT LTG in index context does not match the one MEDICAL ROOM OCC in compare context', 'path: $.ruleset_model_descriptions[0].schedules[29]: data object OFFICE LTG in index context does not match the one MEDICAL TREAT LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[30]: data object RESTAURANT-FULL DHW in index context does not match the one OFFICE LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[42]: data object T24 24hr OCC in index context does not match the one T24 24hr LTG2 in compare context', 'path: $.ruleset_model_descriptions[0].schedules[43]: data object T24 OFFICE<300 LTG in index context does not match the one T24 24hr OCC in compare context', 'path: $.ruleset_model_descriptions[0].schedules[44]: data object T24 OFFICE>300 LTG in index context does not match the one T24 OFFICE<300 LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[45]: data object WAREHOUSE LTG in index context does not match the one T24 OFFICE>300 LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[46]: data object WAREHOUSE OCC in index context does not match the one WAREHOUSE LTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[47]: data object ZG0-S1 (DDS) C-Inf Sch in index context does not match the one WAREHOUSE OCC in compare context', 'path: $.ruleset_model_descriptions[0].schedules[48]: data object ZG0-S1 (DDS) P-Inf Sch in index context does not match the one ZG0-S1 (DDS) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[49]: data object w/ Setback Cooling Sch in index context does not match the one ZG0-S1 (DDS) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[50]: data object w/ Setback Heating Sch in index context does not match the one w/ Setback Cooling Sch in compare context', 'path: $.ruleset_model_descriptions[0].constructions[3]: data object 90.1 2019 CZ5A Floor in index context does not match the one 90.1 2019 CZ5A Steel Nonres in compare context', 'path: $.ruleset_model_descriptions[0].constructions[4]: data object 90.1 2019 CZ5A Steel Nonres in index context does not match the one E-1 in compare context', 'path: $.ruleset_model_descriptions[0].constructions[5]: data object 90.1 2019 CZ5A Steel Res in index context does not match the one F-1 in compare context', 'path: $.ruleset_model_descriptions[0].constructions[6]: data object E-1 in index context does not match the one G - Ceilg Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[7]: data object G - Ceilg Construction in index context does not match the one G - IFlSP Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[8]: data object G - IFlSP Construction in index context does not match the one G - IFlr Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[9]: data object G - IFlr Construction in index context does not match the one G - IWall Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[10]: data object G - IWall Construction in index context does not match the one G - UFCons (Avg) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[11]: data object G - UFCons (Avg) in index context does not match the one GL-Spandrel in compare context', 'path: $.ruleset_model_descriptions[0].constructions[12]: data object GL-Spandrel in index context does not match the one R-1 in compare context', 'path: $.ruleset_model_descriptions[0].materials[5]: data object 90.1 2019 CZ5A Steel Res Mat in index context does not match the one AcousTile 1/2in (AC02) in compare context', 'path: $.ruleset_model_descriptions[0].materials[6]: data object AcousTile 1/2in (AC02) in index context does not match the one Air Lay <3/4in Vert (AL11) in compare context', 'path: $.ruleset_model_descriptions[0].materials[7]: data object Air Lay <3/4in Vert (AL11) in index context does not match the one Bldg Paper Felt (BP01) in compare context', 'path: $.ruleset_model_descriptions[0].materials[8]: data object Bldg Paper Felt (BP01) in index context does not match the one Blt-Up Roof 3/8in (BR01) in compare context', 'path: $.ruleset_model_descriptions[0].materials[9]: data object Blt-Up Roof 3/8in (BR01) in index context does not match the one Carpet & No Pad in compare context', 'path: $.ruleset_model_descriptions[0].materials[10]: data object Carpet & No Pad in index context does not match the one Conc HW 140lb 12in (CC07) in compare context', 'path: $.ruleset_model_descriptions[0].materials[11]: data object Conc HW 140lb 12in (CC07) in index context does not match the one Conc HW 140lb 4in (HF-C5) in compare context', 'path: $.ruleset_model_descriptions[0].materials[12]: data object Conc HW 140lb 4in (HF-C5) in index context does not match the one G - EWall Cons Mat 2 (10.19) in compare context', 'path: $.ruleset_model_descriptions[0].materials[13]: data object G - EWall Cons Mat 2 (10.19) in index context does not match the one G - IWall Cons Mat 2 (0.91) in compare context', 'path: $.ruleset_model_descriptions[0].materials[14]: data object G - IWall Cons Mat 2 (0.91) in index context does not match the one G - UFMat (Avg) in compare context', 'path: $.ruleset_model_descriptions[0].materials[15]: data object G - UFMat (Avg) in index context does not match the one GypBd 1/2in (GP01) in compare context', 'path: $.ruleset_model_descriptions[0].materials[16]: data object GypBd 1/2in (GP01) in index context does not match the one Insul Bd 3/4in (IN62) in compare context', 'path: $.ruleset_model_descriptions[0].materials[17]: data object Insul Bd 3/4in (IN62) in index context does not match the one Light Soil, Damp 12in in compare context', 'path: $.ruleset_model_descriptions[0].materials[18]: data object Light Soil, Damp 12in in index context does not match the one Linoleum Tile (LT01) in compare context', 'path: $.ruleset_model_descriptions[0].materials[19]: data object Linoleum Tile (LT01) in index context does not match the one Plywd 5/8in (PW04) in compare context', 'path: $.ruleset_model_descriptions[0].materials[20]: data object Plywd 5/8in (PW04) in index context does not match the one Proposed Roof Mat in compare context', 'path: $.ruleset_model_descriptions[0].materials[21]: data object Proposed Roof Mat in index context does not match the one Proposed Spandrel Mat in compare context', 'path: $.ruleset_model_descriptions[0].materials[22]: data object Proposed Spandrel Mat in index context does not match the one Proposed Wall Mat in compare context', 'path: $.ruleset_model_descriptions[0].materials[23]: data object Proposed Wall Mat in index context does not match the one Steel Siding (AS01) in compare context', 'path: $.ruleset_model_descriptions[0].materials[24]: data object Steel Siding (AS01) in index context does not match the one Stucco 1in (SC01) in compare context', 'path: $.ruleset_model_descriptions[0].fluid_loops[2]: data object PCHW Loop in index context does not match the one Primary CHW Loop in compare context', 'path: $.ruleset_model_descriptions[0].fluid_loops[2].cooling_or_condensing_design_and_control: data object PCHW Loop CoolingDesign/Control in index context does not match the one Primary CHW Loop CoolingDesign/Control in compare context', 'path: $.ruleset_model_descriptions[0].pumps[0]: data object CWP1 in index context does not match the one CHWP-1 in compare context', 'path: $.ruleset_model_descriptions[0].pumps[1]: data object CWP2 in index context does not match the one CHWP-2 in compare context', 'path: $.ruleset_model_descriptions[0].pumps[2]: data object DHW Pump in index context does not match the one CHWP:5-8 in compare context', 'path: $.ruleset_model_descriptions[0].pumps[3]: data object HW Loop Pump in index context does not match the one CHWP:5-8 1 in compare context', 'path: $.ruleset_model_descriptions[0].pumps[4]: data object PCHWP 1 in index context does not match the one CHWP:5-8 2 in compare context', 'path: $.ruleset_model_descriptions[0].pumps[5]: data object PCHWP 2 in index context does not match the one CWP-1 in compare context', 'path: $.ruleset_model_descriptions[0].pumps[6]: data object SCHW Pump in index context does not match the one CWP-2 in compare context', 'path: $.ruleset_model_descriptions[0].boilers[0]: data object Boiler1a (HWNatDrft) in index context does not match the one B-1 in compare context', 'path: $.ruleset_model_descriptions[0].boilers[1]: data object Boiler1b (HWNatDrft) in index context does not match the one B-2 in compare context', 'path: $.ruleset_model_descriptions[0].chillers[0]: data object Chiller 1 in index context does not match the one CH-1 in compare context', 'path: $.ruleset_model_descriptions[0].chillers[1]: data object Chiller 2 in index context does not match the one CH-2 in compare context']" + } + ], + "messages": "path: $.ruleset_model_descriptions[0]: data object Sample 3 in index context does not match the one Sample 3 - Final - 7 - Proposed in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[29].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[30].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[32].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[33].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[34].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[35].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[36].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[37].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[38].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[40].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[41].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[42].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[43].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[44].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[45].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[46].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[47].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[48].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[49].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[50].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[51].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[52].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[53].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[54].infiltration.modeling_method: index context data: WEATHER_DRIVEN does not equal to compare context data: CONSTANT_SCHEDULED; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object 1 - Kitchen - Sys3 in index context does not match the one AHU-1,2,3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object 1 - Kitchen - Sys3 FanSys in index context does not match the one AHU-1,2,3 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object 1 - Kitchen - Sys3 SupplyFan in index context does not match the one AHU-1,2,3 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.air_economizer: data object 1 - Kitchen - Sys3 AirEconomizer in index context does not match the one AHU-1,2,3 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].cooling_system: data object 1 - Kitchen - Sys3 CoolSys in index context does not match the one AHU-1,2,3 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1]: data object 1 - Sys7 in index context does not match the one AHU-10 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system: data object 1 - Sys7 FanSys in index context does not match the one AHU-10 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.supply_fans[0]: data object 1 - Sys7 SupplyFan in index context does not match the one AHU-10 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.return_fans[0]: data object 1 - Sys7 ReturnFan in index context does not match the one AHU-10 ReturnFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.air_economizer: data object 1 - Sys7 AirEconomizer in index context does not match the one AHU-10 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].cooling_system: data object 1 - Sys7 CoolSys in index context does not match the one AHU-10 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].preheat_system: data object 1 - Sys7 PreheatSys in index context does not match the one AHU-10 PreheatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2]: data object 2 - Kitchen - Sys3 in index context does not match the one AHU-4/5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system: data object 2 - Kitchen - Sys3 FanSys in index context does not match the one AHU-4/5 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.supply_fans[0]: data object 2 - Kitchen - Sys3 SupplyFan in index context does not match the one AHU-4/5 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.air_economizer: data object 2 - Kitchen - Sys3 AirEconomizer in index context does not match the one AHU-4/5 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].cooling_system: data object 2 - Kitchen - Sys3 CoolSys in index context does not match the one AHU-4/5 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3]: data object 2 - Sys7 in index context does not match the one AHU-6/7 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system: data object 2 - Sys7 FanSys in index context does not match the one AHU-6/7 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.supply_fans[0]: data object 2 - Sys7 SupplyFan in index context does not match the one AHU-6/7 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.return_fans[0]: data object 2 - Sys7 ReturnFan in index context does not match the one AHU-6/7 ReturnFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.air_economizer: data object 2 - Sys7 AirEconomizer in index context does not match the one AHU-6/7 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].cooling_system: data object 2 - Sys7 CoolSys in index context does not match the one AHU-6/7 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].preheat_system: data object 2 - Sys7 PreheatSys in index context does not match the one AHU-6/7 PreheatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object 3 - Sys7 in index context does not match the one AHU-8 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object 3 - Sys7 FanSys in index context does not match the one AHU-8 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object 3 - Sys7 SupplyFan in index context does not match the one AHU-8 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.return_fans[0]: data object 3 - Sys7 ReturnFan in index context does not match the one AHU-8 ReturnFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.air_economizer: data object 3 - Sys7 AirEconomizer in index context does not match the one AHU-8 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].cooling_system: data object 3 - Sys7 CoolSys in index context does not match the one AHU-8 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].preheat_system: data object 3 - Sys7 PreheatSys in index context does not match the one AHU-8 PreheatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5]: data object 3.170 - Sys7 in index context does not match the one AHU-9 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system: data object 3.170 - Sys7 FanSys in index context does not match the one AHU-9 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.supply_fans[0]: data object 3.170 - Sys7 SupplyFan in index context does not match the one AHU-9 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.air_economizer: data object 3.170 - Sys7 AirEconomizer in index context does not match the one AHU-9 AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].cooling_system: data object 3.170 - Sys7 CoolSys in index context does not match the one AHU-9 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6]: data object 4 - Sys7 in index context does not match the one FCU in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system: data object 4 - Sys7 FanSys in index context does not match the one FCU FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.supply_fans[0]: data object 4 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].cooling_system: data object 4 - Sys7 CoolSys in index context does not match the one FCU CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7]: data object 4.170 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 2 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system: data object 4.170 - Sys7 FanSys in index context does not match the one FCU FanSys--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.supply_fans[0]: data object 4.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].cooling_system: data object 4.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8]: data object 5 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 4 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system: data object 5 - Sys7 FanSys in index context does not match the one FCU FanSys--16 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.supply_fans[0]: data object 5 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--16 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].cooling_system: data object 5 - Sys7 CoolSys in index context does not match the one FCU CoolSys--16 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9]: data object 5.170 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 5 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system: data object 5.170 - Sys7 FanSys in index context does not match the one FCU FanSys--17 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.supply_fans[0]: data object 5.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--17 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].cooling_system: data object 5.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--17 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10]: data object 6 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 6 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system: data object 6 - Sys7 FanSys in index context does not match the one FCU FanSys--18 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.supply_fans[0]: data object 6 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--18 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].cooling_system: data object 6 - Sys7 CoolSys in index context does not match the one FCU CoolSys--18 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11]: data object 6.170 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech 8 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system: data object 6.170 - Sys7 FanSys in index context does not match the one FCU FanSys--19 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.supply_fans[0]: data object 6.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--19 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].cooling_system: data object 6.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--19 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12]: data object 7 - Sys7 in index context does not match the one FCU - 1 - Elec/Mech zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system: data object 7 - Sys7 FanSys in index context does not match the one FCU FanSys--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.supply_fans[0]: data object 7 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].cooling_system: data object 7 - Sys7 CoolSys in index context does not match the one FCU CoolSys--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13]: data object 7.170 - Sys7 in index context does not match the one FCU - 1 - Stairs zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system: data object 7.170 - Sys7 FanSys in index context does not match the one FCU FanSys--13 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.supply_fans[0]: data object 7.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--13 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].cooling_system: data object 7.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--13 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14]: data object 8 - Sys7 in index context does not match the one FCU - 2 - Elec/Mech 2 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system: data object 8 - Sys7 FanSys in index context does not match the one FCU FanSys--24 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.supply_fans[0]: data object 8 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--24 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].cooling_system: data object 8 - Sys7 CoolSys in index context does not match the one FCU CoolSys--24 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15]: data object 8.170 - Sys7 in index context does not match the one FCU - 2 - Elec/Mech zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system: data object 8.170 - Sys7 FanSys in index context does not match the one FCU FanSys--21 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.supply_fans[0]: data object 8.170 - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--21 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].cooling_system: data object 8.170 - Sys7 CoolSys in index context does not match the one FCU CoolSys--21 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16]: data object G - Sys7 in index context does not match the one FCU - 2 - Stairs 2 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system: data object G - Sys7 FanSys in index context does not match the one FCU FanSys--23 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.supply_fans[0]: data object G - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--23 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].cooling_system: data object G - Sys7 CoolSys in index context does not match the one FCU CoolSys--23 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17]: data object P - Sys7 in index context does not match the one FCU - 2 - Stairs zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system: data object P - Sys7 FanSys in index context does not match the one FCU FanSys--22 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.supply_fans[0]: data object P - Sys7 SupplyFan in index context does not match the one FCU SupplyFan--22 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].cooling_system: data object P - Sys7 CoolSys in index context does not match the one FCU CoolSys--22 in compare context; path: $.ruleset_model_descriptions[0].schedules[2]: data object BOH Cooling Sch in index context does not match the one 90.1 App G UM G-E SWH in compare context; path: $.ruleset_model_descriptions[0].schedules[3]: data object BOH Heating Sch in index context does not match the one BOH Cooling Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[4]: data object CHWST Reset Sch in index context does not match the one BOH Heating Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[5]: data object COMMUNITY CTR LTG in index context does not match the one CHWST Reset Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[12]: data object G - Bldg Occup Sch in index context does not match the one Disabled Load Mang Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[13]: data object HOSPITAL DHW in index context does not match the one G - Bldg Occup Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[22]: data object MEDICAL KIT LTG in index context does not match the one Load Management Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[23]: data object MEDICAL KIT OCC in index context does not match the one MEDICAL KIT LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[24]: data object MEDICAL OPER LTG in index context does not match the one MEDICAL KIT OCC in compare context; path: $.ruleset_model_descriptions[0].schedules[25]: data object MEDICAL OPER OCC in index context does not match the one MEDICAL OPER LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[26]: data object MEDICAL ROOM LTG in index context does not match the one MEDICAL OPER OCC in compare context; path: $.ruleset_model_descriptions[0].schedules[27]: data object MEDICAL ROOM OCC in index context does not match the one MEDICAL ROOM LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[28]: data object MEDICAL TREAT LTG in index context does not match the one MEDICAL ROOM OCC in compare context; path: $.ruleset_model_descriptions[0].schedules[29]: data object OFFICE LTG in index context does not match the one MEDICAL TREAT LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[30]: data object RESTAURANT-FULL DHW in index context does not match the one OFFICE LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[42]: data object T24 24hr OCC in index context does not match the one T24 24hr LTG2 in compare context; path: $.ruleset_model_descriptions[0].schedules[43]: data object T24 OFFICE<300 LTG in index context does not match the one T24 24hr OCC in compare context; path: $.ruleset_model_descriptions[0].schedules[44]: data object T24 OFFICE>300 LTG in index context does not match the one T24 OFFICE<300 LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[45]: data object WAREHOUSE LTG in index context does not match the one T24 OFFICE>300 LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[46]: data object WAREHOUSE OCC in index context does not match the one WAREHOUSE LTG in compare context; path: $.ruleset_model_descriptions[0].schedules[47]: data object ZG0-S1 (DDS) C-Inf Sch in index context does not match the one WAREHOUSE OCC in compare context; path: $.ruleset_model_descriptions[0].schedules[48]: data object ZG0-S1 (DDS) P-Inf Sch in index context does not match the one ZG0-S1 (DDS) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[49]: data object w/ Setback Cooling Sch in index context does not match the one ZG0-S1 (DDS) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[50]: data object w/ Setback Heating Sch in index context does not match the one w/ Setback Cooling Sch in compare context; path: $.ruleset_model_descriptions[0].constructions[3]: data object 90.1 2019 CZ5A Floor in index context does not match the one 90.1 2019 CZ5A Steel Nonres in compare context; path: $.ruleset_model_descriptions[0].constructions[4]: data object 90.1 2019 CZ5A Steel Nonres in index context does not match the one E-1 in compare context; path: $.ruleset_model_descriptions[0].constructions[5]: data object 90.1 2019 CZ5A Steel Res in index context does not match the one F-1 in compare context; path: $.ruleset_model_descriptions[0].constructions[6]: data object E-1 in index context does not match the one G - Ceilg Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[7]: data object G - Ceilg Construction in index context does not match the one G - IFlSP Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[8]: data object G - IFlSP Construction in index context does not match the one G - IFlr Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[9]: data object G - IFlr Construction in index context does not match the one G - IWall Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[10]: data object G - IWall Construction in index context does not match the one G - UFCons (Avg) in compare context; path: $.ruleset_model_descriptions[0].constructions[11]: data object G - UFCons (Avg) in index context does not match the one GL-Spandrel in compare context; path: $.ruleset_model_descriptions[0].constructions[12]: data object GL-Spandrel in index context does not match the one R-1 in compare context; path: $.ruleset_model_descriptions[0].materials[5]: data object 90.1 2019 CZ5A Steel Res Mat in index context does not match the one AcousTile 1/2in (AC02) in compare context; path: $.ruleset_model_descriptions[0].materials[6]: data object AcousTile 1/2in (AC02) in index context does not match the one Air Lay <3/4in Vert (AL11) in compare context; path: $.ruleset_model_descriptions[0].materials[7]: data object Air Lay <3/4in Vert (AL11) in index context does not match the one Bldg Paper Felt (BP01) in compare context; path: $.ruleset_model_descriptions[0].materials[8]: data object Bldg Paper Felt (BP01) in index context does not match the one Blt-Up Roof 3/8in (BR01) in compare context; path: $.ruleset_model_descriptions[0].materials[9]: data object Blt-Up Roof 3/8in (BR01) in index context does not match the one Carpet & No Pad in compare context; path: $.ruleset_model_descriptions[0].materials[10]: data object Carpet & No Pad in index context does not match the one Conc HW 140lb 12in (CC07) in compare context; path: $.ruleset_model_descriptions[0].materials[11]: data object Conc HW 140lb 12in (CC07) in index context does not match the one Conc HW 140lb 4in (HF-C5) in compare context; path: $.ruleset_model_descriptions[0].materials[12]: data object Conc HW 140lb 4in (HF-C5) in index context does not match the one G - EWall Cons Mat 2 (10.19) in compare context; path: $.ruleset_model_descriptions[0].materials[13]: data object G - EWall Cons Mat 2 (10.19) in index context does not match the one G - IWall Cons Mat 2 (0.91) in compare context; path: $.ruleset_model_descriptions[0].materials[14]: data object G - IWall Cons Mat 2 (0.91) in index context does not match the one G - UFMat (Avg) in compare context; path: $.ruleset_model_descriptions[0].materials[15]: data object G - UFMat (Avg) in index context does not match the one GypBd 1/2in (GP01) in compare context; path: $.ruleset_model_descriptions[0].materials[16]: data object GypBd 1/2in (GP01) in index context does not match the one Insul Bd 3/4in (IN62) in compare context; path: $.ruleset_model_descriptions[0].materials[17]: data object Insul Bd 3/4in (IN62) in index context does not match the one Light Soil, Damp 12in in compare context; path: $.ruleset_model_descriptions[0].materials[18]: data object Light Soil, Damp 12in in index context does not match the one Linoleum Tile (LT01) in compare context; path: $.ruleset_model_descriptions[0].materials[19]: data object Linoleum Tile (LT01) in index context does not match the one Plywd 5/8in (PW04) in compare context; path: $.ruleset_model_descriptions[0].materials[20]: data object Plywd 5/8in (PW04) in index context does not match the one Proposed Roof Mat in compare context; path: $.ruleset_model_descriptions[0].materials[21]: data object Proposed Roof Mat in index context does not match the one Proposed Spandrel Mat in compare context; path: $.ruleset_model_descriptions[0].materials[22]: data object Proposed Spandrel Mat in index context does not match the one Proposed Wall Mat in compare context; path: $.ruleset_model_descriptions[0].materials[23]: data object Proposed Wall Mat in index context does not match the one Steel Siding (AS01) in compare context; path: $.ruleset_model_descriptions[0].materials[24]: data object Steel Siding (AS01) in index context does not match the one Stucco 1in (SC01) in compare context; path: $.ruleset_model_descriptions[0].fluid_loops[2]: data object PCHW Loop in index context does not match the one Primary CHW Loop in compare context; path: $.ruleset_model_descriptions[0].fluid_loops[2].cooling_or_condensing_design_and_control: data object PCHW Loop CoolingDesign/Control in index context does not match the one Primary CHW Loop CoolingDesign/Control in compare context; path: $.ruleset_model_descriptions[0].pumps[0]: data object CWP1 in index context does not match the one CHWP-1 in compare context; path: $.ruleset_model_descriptions[0].pumps[1]: data object CWP2 in index context does not match the one CHWP-2 in compare context; path: $.ruleset_model_descriptions[0].pumps[2]: data object DHW Pump in index context does not match the one CHWP:5-8 in compare context; path: $.ruleset_model_descriptions[0].pumps[3]: data object HW Loop Pump in index context does not match the one CHWP:5-8 1 in compare context; path: $.ruleset_model_descriptions[0].pumps[4]: data object PCHWP 1 in index context does not match the one CHWP:5-8 2 in compare context; path: $.ruleset_model_descriptions[0].pumps[5]: data object PCHWP 2 in index context does not match the one CWP-1 in compare context; path: $.ruleset_model_descriptions[0].pumps[6]: data object SCHW Pump in index context does not match the one CWP-2 in compare context; path: $.ruleset_model_descriptions[0].boilers[0]: data object Boiler1a (HWNatDrft) in index context does not match the one B-1 in compare context; path: $.ruleset_model_descriptions[0].boilers[1]: data object Boiler1b (HWNatDrft) in index context does not match the one B-2 in compare context; path: $.ruleset_model_descriptions[0].chillers[0]: data object Chiller 1 in index context does not match the one CH-1 in compare context; path: $.ruleset_model_descriptions[0].chillers[1]: data object Chiller 2 in index context does not match the one CH-2 in compare context" + } + }, + "1-8": { + "Sample 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 3 - Final - 7 - Proposed in index context does not match the one Sample 3 - Final - 7 in compare context']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object Sample 3 - Final - 7 - Proposed in index context does not match the one Sample 3 - Final - 7 in compare context" + ] + } + }, + "1-9": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "4-1": { + "G - Lockers zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Laundry/Washing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Workshop zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Laundry/Washing 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Supply Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Supply Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Mail Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Vestibule zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Dining zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Kitchen 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Stairs 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elec/Mech 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lockers zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Classroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Classroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Classroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Bridge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elev Lobby 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Laundry zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Electrical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Electrical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Electrical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Laundry zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Electrical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Electrical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Electrical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Generator Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Kitchen zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Kitchen zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Patient Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Exam Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Mail Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Core and Shell 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Core and Shell 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Seating zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Open Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Supply Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Exam Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Nurses Station 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Supply Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Laundry/Washing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Conference 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Conference 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Washing 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 9 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Imaging 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Conference 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Exercise zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Conference 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lab 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Conference 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Exam 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Exam 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 9 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Void 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Void 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Void 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Void 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Void 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-2": { + "G - Lockers zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Laundry/Washing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Workshop zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Laundry/Washing 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Supply Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Supply Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Mail Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elec/Mech 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Vestibule zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Dining zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Kitchen 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Stairs 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Shell 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Elec/Mech 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lockers zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Classroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Classroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Classroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Bridge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elev Lobby 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Laundry zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Electrical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Electrical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Electrical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Laundry zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Electrical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Electrical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Electrical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Generator Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "P - Mechanical 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Kitchen zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2 - Kitchen zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Patient Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Operating Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Exam Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Corridor 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Mail Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Core and Shell 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "5 - Core and Shell 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Seating zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Open Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Supply Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Exam Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Nurses Station 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Supply Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Laundry/Washing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Patient Rm 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Conference 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Lounge 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Conference 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Washing 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Restroom 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Office 9 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Med Supply 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Imaging 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Patient Rm 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Conference 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Exercise zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Conference 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lab 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Conference 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Exam 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Med Supply 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Exam 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 9 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Patient Rm 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Lounge 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Void 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "7 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Void 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Void 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "8 - Void 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "3 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "4 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "6 - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "G - Void 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-11": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No fan operating schedules found for zone '7 - Void 1 zn', and no fallback assumed." + } + }, + "4-14": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-1": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "no_of_rmds", + "value": "3" + }, + { + "variable": "no_of_output_instance", + "value": "2" + }, + { + "variable": "rotation_expected_b", + "value": "True" + }, + { + "variable": "has_baseline_0", + "value": "True" + }, + { + "variable": "has_baseline_90", + "value": "False" + }, + { + "variable": "has_baseline_180", + "value": "False" + }, + { + "variable": "has_baseline_270", + "value": "False" + }, + { + "variable": "has_proposed", + "value": "True" + }, + { + "variable": "has_user", + "value": "True" + }, + { + "variable": "has_baseline_0_output", + "value": "True" + }, + { + "variable": "has_baseline_90_output", + "value": "False" + }, + { + "variable": "has_baseline_180_output", + "value": "False" + }, + { + "variable": "has_baseline_270_output", + "value": "False" + }, + { + "variable": "has_proposed_output", + "value": "True" + }, + { + "variable": "has_user_output", + "value": "True" + } + ], + "messages": "Fail unless Table G3.1#5a exception #2 is applicable and it can be demonstrated that the building orientation is dictated by site considerations." + } + }, + "5-2": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surfaces_casting_shade_ids", + "value": "['G - North Wall (G.NNW1.E1)', 'G - WNW Wall (G.NNW1.E2)', 'G - WNW Wall (G.NNW1.E3)', 'G - WNW Wall (G.W3.E4)', 'G - West Wall (G.W3.E5)', 'G - West Wall (G.W3.E6)', 'G - East Wall (G.NE4.E7)', 'G - North Wall (G.NE4.E8)', 'G - East Wall (G.NE4.E9)', 'G - North Wall (G.NE4.E10)', 'G - West Wall (G.W5.E11)', 'G - West Wall (G.W8.E12)', 'G - West Wall (G.W9.E13)', 'G - South Wall (G.SSW15.E14)', 'G - West Wall (G.SSW15.E15)', 'G - South Wall (G.SSW16.E16)', 'G - West Wall (G.SSW16.E17)', 'G - West Wall (G.W18.E18)', 'G - West Wall (G.W19.E19)', 'G - East Wall (G.NNE20.E20)', 'G - North Wall (G.NNE20.E21)', 'G - NE Wall (G.NNE20.E22)', 'G - North Wall (G.NNE20.E23)', 'G - East Wall (G.E22.E24)', '1 - South Wall (G.S1.E1)', '1 - South Wall (G.S3.E3)', '1 - South Wall (G.S5.E4)', '1 - WNW Wall (G.WNW6.E5)', '1 - WNW Wall (G.WNW13.E6)', '1 - WNW Wall (G.WSW14.E7)', '1 - West Wall (G.WSW14.E8)', '1 - WSW Wall (G.WSW14.E9)', '1 - SW Wall (G.WSW14.E10)', '1 - SSW Wall (G.WSW14.E11)', '1 - South Wall (G.WSW14.E12)', '1 - WNW Wall (G.WNW20.E13)', '1 - North Wall (G.NW21.E14)', '1 - NNW Wall (G.NW21.E15)', '1 - NW Wall (G.NW21.E16)', '1 - WNW Wall (G.NW21.E17)', '1 - WNW Wall (G.NW21.E18)', '1 - North Wall (G.N22.E19)', '2 - North Wall (G.WNW1.E1)', '2 - NNW Wall (G.WNW1.E2)', '2 - NW Wall (G.WNW1.E3)', '2 - NW Wall (G.WNW1.E4)', '2 - WNW Wall (G.WNW1.E5)', '2 - West Wall (G.WNW1.E6)', '2 - WSW Wall (G.WNW1.E7)', '2 - WNW Wall (G.W2.E8)', '2 - West Wall (G.W2.E9)', '2 - WSW Wall (G.W2.E10)', '2 - SW Wall (G.W2.E11)', '2 - SSW Wall (G.W2.E12)', '2 - South Wall (G.W2.E13)', '2 - South Wall (G.S5.E14)', '2 - South Wall (G.S7.E16)', '2 - South Wall (G.S12.E17)', '2 - South Wall (G.C13.E18)', '2 - West Wall (G.NNW24.E19)', '2 - WNW Wall (G.NNW24.E20)', '2 - NW Wall (G.NNW24.E21)', '2 - NW Wall (G.NNW24.E22)', '2 - NNW Wall (G.NNW24.E23)', '2 - NNW Wall (G.NNW24.E24)', '2 - North Wall (G.NNW24.E25)', '2 - NNE Wall (G.NNW24.E26)', '2 - NNE Wall (G.NNW24.E27)', '2 - NE Wall (G.NNW24.E28)', '2 - NE Wall (G.NNW24.E29)', '2 - NE Wall (G.NNW24.E30)', '2 - North Wall (G.NNW24.E31)', '2 - NNW Wall (G.NNW24.E32)', '2 - NW Wall (G.NNW24.E33)', '2 - WNW Wall (G.NNW24.E34)', '2 - WNW Wall (G.NNW24.E35)', '2 - WNW Wall (G.NNW24.E36)', '2 - West Wall (G.NNW24.E37)', 'Exterior Wall 319', '3 - South Wall (G.S1.E1)', '3 - WNW Wall (G.WNW6.E6)', '3 - WNW Wall (G.WSW8.E8)', '3 - West Wall (G.WSW8.E9)', '3 - WSW Wall (G.WSW8.E10)', '3 - SW Wall (G.WSW8.E11)', '3 - SSW Wall (G.WSW8.E12)', '3 - South Wall (G.WSW8.E13)', '3 - West Wall (G.C15.E14)', '3 - WNW Wall (G.WNW16.E15)', '3 - NW Wall (G.WNW16.E16)', '3 - West Wall (G.WNW16.E17)', '3 - NW Wall (G.C48.E20)', '3 - NNW Wall (G.C48.E21)', '3 - NNW Wall (G.C48.E22)', '3 - WNW Wall (G.WNW49.E23)', '4 - South Wall (G.S1.E1)', '4 - South Wall (G.S2.E2)', '4 - South Wall (G.S3.E3)', '4 - South Wall (G.S4.E4)', '4 - South Wall (G.S5.E5)', '4 - WNW Wall (G.WSW20.E7)', '4 - West Wall (G.WSW20.E8)', '4 - WSW Wall (G.WSW20.E9)', '4 - SW Wall (G.WSW20.E10)', '4 - SSW Wall (G.WSW20.E11)', '4 - South Wall (G.WSW20.E12)', '4 - WNW Wall (G.WNW21.E13)', '4 - WNW Wall (G.C22.E14)', '4 - WNW Wall (G.WNW23.E15)', '4 - WNW Wall (G.WNW24.E16)', '4 - NW Wall (G.C36.E17)', '4 - NNW Wall (G.C36.E18)', '4 - NNW Wall (G.C36.E19)', '4 - West Wall (G.W38.E20)', '4 - West Wall (G.W38.E21)', '4 - WNW Wall (G.W38.E22)', '4 - NW Wall (G.W38.E23)', '4 - North Wall (G.NW42.E24)', '4 - South Wall (G.NW42.E26)', '4 - Flr (G.NW42.I215)', '5 - South Wall (G.S1.E1)', '6 - South Wall (G.S3.E4)', '6 - South Wall (G.S8.E9)', '7 - South Wall (G.S3.E4)', '8 - South Wall (G.S4.E5)', '8 - WNW Wall (G.C14.E13)', '8 - North Wall (G.N22.E24)', 'P - South Wall (G.WSW1.E1)', 'P - WNW Wall (G.WSW1.E2)', 'P - Roof (G.WSW1.E3)', 'P - South Wall (G.S3.E6)', 'P - Roof (G.S3.E7)', 'P - South Wall (G.S4.E8)', 'P - Roof (G.S4.E9)', 'P - North Wall (G.NW7.E13)', 'P - WNW Wall (G.NW7.E14)', 'P - Roof (G.NW7.E15)', 'P - South Wall (G.ENE11.E21)', 'P - South Wall (G.ENE11.E22)', 'P - East Wall (G.ENE11.E23)', 'P - East Wall (G.ENE11.E24)', 'P - WNW Wall (G.ENE11.E25)', 'P - WNW Wall (G.ENE11.E26)', 'P - NW Wall (G.ENE11.E27)', 'P - NW Wall (G.ENE11.E28)', 'P - NNW Wall (G.ENE11.E29)', 'P - NNW Wall (G.ENE11.E30)', 'P - North Wall (G.ENE11.E31)', 'P - Roof (G.ENE11.E32)', 'P - South Wall (G.S9.E17)', 'P - Roof (G.S9.E18)', '1 - South Wall (G.S2.E2)', '2 - South Wall (G.S6.E15)', '3 - South Wall (G.S2.E2)', '3 - South Wall (G.S2.E3)', '3 - South Wall (G.S3.E4)', '3 - South Wall (G.S4.E5)', '3 - WNW Wall (G.WNW7.E7)', '3 - West Wall (G.C17.E18)', '3 - West Wall (G.C17.E19)', '4 - South Wall (G.S6.E6)', '5 - South Wall (G.S8.E3)', '5 - South Wall (G.S8.E4)', '5 - East Wall (G.S8.E5)', '5 - WNW Wall (G.S8.E6)', '5 - East Wall (G.NNW9.E7)', '5 - South Wall (G.NNW9.E8)', '5 - WNW Wall (G.NNW9.E9)', '5 - NW Wall (G.NNW9.E10)', '5 - NW Wall (G.NNW9.E11)', '5 - NW Wall (G.NNW9.E12)', '5 - NNW Wall (G.NNW9.E13)', '5 - NNW Wall (G.NNW9.E14)', '5 - North Wall (G.NNW9.E15)', '5 - North Wall (G.NNW9.E16)', '5 - NNW Wall (G.NNW9.E17)', '5 - NW Wall (G.NNW9.E18)', '5 - WNW Wall (G.NNW9.E19)', '5 - WNW Wall (G.NNW9.E20)', '6 - South Wall (G.S2.E3)', '6 - NW Wall (G.NNW13.E15)', '6 - NW Wall (G.NNW13.E16)', '6 - NW Wall (G.NNW13.E17)', '6 - NNW Wall (G.NNW13.E18)', '6 - NNW Wall (G.NNW13.E19)', '6 - North Wall (G.NNW13.E20)', '6 - North Wall (G.NNW13.E21)', '6 - North Wall (G.N14.E22)', '6 - North Wall (G.N38.E24)', '6 - South Wall (G.SW1.E1)', '6 - WNW Wall (G.SW1.E2)', '6 - South Wall (G.S4.E5)', '6 - East Wall (G.S4.E6)', '6 - East Wall (G.E5.E7)', '6 - East Wall (G.C16.E23)', '6 - North Wall (G.N39.E25)', '6 - North Wall (G.NW42.E26)', '6 - NNW Wall (G.NW42.E27)', '6 - NW Wall (G.NW42.E28)', '6 - WNW Wall (G.NW42.E29)', '6 - WNW Wall (G.NW42.E30)', '6 - WNW Wall (G.WNW43.E31)', '7 - South Wall (G.S2.E3)', '7 - South Wall (G.S4.E5)', '7 - East Wall (G.SE5.E6)', '7 - South Wall (G.SE5.E7)', '7 - WNW Wall (G.WNW8.E8)', '7 - East Wall (G.E9.E9)', '7 - WNW Wall (G.NW14.E16)', '7 - NW Wall (G.NW14.E17)', '7 - NW Wall (G.NW14.E18)', '7 - NW Wall (G.NW14.E19)', '7 - NNW Wall (G.NW14.E20)', '7 - NNW Wall (G.NW14.E21)', '7 - North Wall (G.NW14.E22)', '7 - North Wall (G.N17.E23)', '7 - North Wall (G.N17.E24)', '7 - North Wall (G.N20.E25)', '7 - North Wall (G.N22.E26)', '7 - North Wall (G.N23.E27)', '7 - North Wall (G.N25.E28)', '7 - North Wall (G.N26.E29)', '7 - North Wall (G.NW27.E30)', '7 - NNW Wall (G.NW27.E31)', '7 - NW Wall (G.NW27.E32)', '7 - WNW Wall (G.NW27.E33)', '7 - WNW Wall (G.NW27.E34)', '7 - East Wall (G.C28.E35)', '7 - South Wall (G.SSW1.E1)', '7 - WNW Wall (G.SSW1.E2)', '8 - South Wall (G.S5.E6)', '8 - South Wall (G.ESE6.E7)', '8 - East Wall (G.ESE6.E8)', '8 - East Wall (G.E10.E9)', '8 - East Wall (G.E11.E10)', '8 - East Wall (G.E12.E11)', '8 - WNW Wall (G.WNW15.E14)', '8 - North Wall (G.NW16.E15)', '8 - NNW Wall (G.NW16.E16)', '8 - NW Wall (G.NW16.E17)', '8 - WNW Wall (G.NW16.E18)', '8 - WNW Wall (G.NW16.E19)', '8 - North Wall (G.N17.E20)', '8 - North Wall (G.N18.E21)', '8 - North Wall (G.N19.E22)', '8 - North Wall (G.N20.E23)', '8 - North Wall (G.N23.E25)', '8 - North Wall (G.N23.E26)', '8 - NW Wall (G.NNW24.E27)', '8 - NNW Wall (G.NNW24.E28)', '8 - NNW Wall (G.NNW24.E29)', '8 - North Wall (G.NNW24.E30)', '8 - WNW Wall (G.NW26.E31)', '8 - NW Wall (G.NW26.E32)', '8 - NW Wall (G.NW26.E33)', '8 - NW Wall (G.NW26.E34)', '8 - South Wall (G.WSW1.E1)', '8 - WNW Wall (G.WSW1.E2)', '8 - South Wall (G.S2.E3)', '7 - East Wall (G.E10.E10)', '7 - North Wall (G.NW13.E11)', '7 - West Wall (G.NW13.E12)', '7 - West Wall (G.NW13.E13)', '7 - WNW Wall (G.NW13.E14)', '7 - WNW Wall (G.NW13.E15)', '8 - South Wall (G.S3.E4)', '8 - East Wall (G.E13.E12)', '8 - West Wall (G.NW29.E35)', '8 - West Wall (G.NW29.E36)', '8 - WNW Wall (G.NW29.E37)', '8 - WNW Wall (G.NW29.E38)', '8 - North Wall (G.NW29.E39)', '5 - East Wall (G.E7.E2)', '5 - West Wall (G.W10.E21)', '5 - West Wall (G.W10.E22)', '5 - WNW Wall (G.W10.E23)', '6 - East Wall (G.E7.E8)', '6 - North Wall (G.NW11.E10)', '6 - West Wall (G.NW11.E11)', '6 - West Wall (G.NW11.E12)', '6 - WNW Wall (G.NW11.E13)', '6 - WNW Wall (G.NW11.E14)', 'P - South Wall (G.S2.E4)', 'P - Roof (G.S2.E5)', 'P - Roof (G.C5.E10)', 'P - North Wall (G.N6.E11)', 'P - Roof (G.N6.E12)', 'P - Roof (G.C8.E16)', 'P - South Wall (G.S10.E19)', 'P - Roof (G.S10.E20)', 'P - South Wall (G.C12.E33)', 'P - Roof (G.C12.E34)', 'P - North Wall (G.NNW13.E35)', 'P - West Wall (G.NNW13.E36)', 'P - Roof (G.NNW13.E37)']" + } + ], + "messages": "" + } + }, + "5-3": { + "Exterior Wall 323": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 327": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 322": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 326": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 328": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 321": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 325": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 320": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 324": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.WSW1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.S3.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.S4.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.NW7.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.ENE11.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.S9.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.S2.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Roof (G.C5.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Roof (G.N6.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Roof (G.C8.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Roof (G.S10.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Roof (G.C12.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Roof (G.NNW13.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-4": { + "Exterior Wall 323": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 327": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 322": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 326": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 328": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 321": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 325": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 320": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exterior Wall 324": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.062332419784112164", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "P - Roof (G.WSW1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "P - Roof (G.S3.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "P - Roof (G.S4.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "P - Roof (G.NW7.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "P - Roof (G.ENE11.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "P - Roof (G.S9.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-5": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-6": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-7": { + "G - North Wall (G.NNW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - WNW Wall (G.NNW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - WNW Wall (G.NNW1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - East Wall (G.NNW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNW1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - WNW Wall (G.W3.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - South Wall (G.W3.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.W3.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.W3.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.W3.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.W3.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NE4.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - East Wall (G.NE4.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.NE4.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NE4.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W5.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - East Wall (G.W5.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W5.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W8.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - South Wall (G.W8.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.W8.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.W8.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.W8.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.W8.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W8.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.W8.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.W8.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W9.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - North Wall (G.C10.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C10.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW15.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW15.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW15.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.SSW15.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW15.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW15.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW16.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW16.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW16.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW16.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.SSW16.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW16.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW16.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW16.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C17.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W18.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - South Wall (G.W18.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.W19.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - South Wall (G.W19.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - NE Wall (G.NNE20.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - SW Wall (G.NNE20.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C21.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C21.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - West Wall (G.E22.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.E22.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.E22.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.E22.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.E22.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.E22.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.E22.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.E22.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C23.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C24.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C24.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - South Wall (G.C25.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C25.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - East Wall (G.C25.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - West Wall (G.C25.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C25.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.S1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.C4.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.C4.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S5.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.S5.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW6.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.WNW6.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C9.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C10.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.C10.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW13.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WSW14.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW14.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - WSW Wall (G.WSW14.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - SW Wall (G.WSW14.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.WSW14.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.WSW14.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.WSW14.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.WSW14.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C15.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C15.I77)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "1 - East Wall (G.C15.I78)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "1 - South Wall (G.C17.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C17.I83)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "1 - East Wall (G.C17.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW20.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW20.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW20.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.NW21.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NW21.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - NW Wall (G.NW21.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.NW21.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.NW21.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.NW21.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.NW21.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.N22.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.N22.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.N22.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - NE Wall (G.N22.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.C23.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - SW Wall (G.C23.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.C23.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.C23.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.C23.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - NNE Wall (G.C23.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - NNE Wall (G.C23.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - NE Wall (G.C23.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.C23.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C24.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C25.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C26.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C26.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.C26.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C27.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.C28.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C28.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C28.I133)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "1 - East Wall (G.C28.I134)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "1 - South Wall (G.C28.I135)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "1 - East Wall (G.C28.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C28.I137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.C28.I138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.WNW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.WNW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NW Wall (G.WNW1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NW Wall (G.WNW1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.WNW1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - West Wall (G.WNW1.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.WNW1.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.W2.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - West Wall (G.W2.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.W2.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - SW Wall (G.W2.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - SSW Wall (G.W2.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.W2.I10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - South Wall (G.S5.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - South Wall (G.S7.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - East Wall (G.S7.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.S7.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.S7.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.S7.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.S7.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - West Wall (G.S7.I28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - East Wall (G.C11.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.S12.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - South Wall (G.C13.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - East Wall (G.C13.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C13.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.C14.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C14.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.C14.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C14.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C14.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C14.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C15.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C15.I49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "Interior Wall 1704": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1705": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1706": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1707": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1708": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1710": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C18.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - North Wall (G.C18.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C18.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I76)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1709": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1711": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.C23.I89)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - West Wall (G.C23.I90)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - North Wall (G.C23.I91)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - SW Wall (G.C23.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - SSW Wall (G.C23.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - ESE Wall (G.C23.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C23.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - ENE Wall (G.C23.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.C23.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - NW Wall (G.C23.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 319": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - SW Wall (G.NNW24.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - SSW Wall (G.NNW24.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - SE Wall (G.NNW24.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I116)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.NNW24.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - ENE Wall (G.NNW24.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C25.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1712": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C17.I53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - South Wall (G.C17.I54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - East Wall (G.C17.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C17.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.C19.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C19.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.S1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW6.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.WNW6.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WSW8.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - West Wall (G.WSW8.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - WSW Wall (G.WSW8.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - SW Wall (G.WSW8.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - SSW Wall (G.WSW8.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - South Wall (G.WSW8.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - East Wall (G.WSW8.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WSW8.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.WSW8.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C13.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C13.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C13.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C15.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - East Wall (G.C15.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C15.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW16.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - NW Wall (G.WNW16.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - West Wall (G.WNW16.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - South Wall (G.C18.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C18.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C18.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C18.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C18.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C20.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C22.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C22.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C22.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C22.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C22.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C22.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C26.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C26.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C26.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C26.I89)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - South Wall (G.C26.I90)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - West Wall (G.C26.I91)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C41.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C41.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C44.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C44.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C46.I158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - NW Wall (G.C48.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - NNW Wall (G.C48.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - NNW Wall (G.C48.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I179)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C48.I180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C48.I182)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I183)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - West Wall (G.C48.I184)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C48.I185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I187)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I188)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C48.I189)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I190)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I191)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW49.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - SSW Wall (G.WNW49.I193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.WNW49.I194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.WNW49.I195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.WNW49.I196)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.WNW49.I197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.WNW49.I198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.WNW49.I199)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.S1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - South Wall (G.S2.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - East Wall (G.S2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.S2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.S3.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - East Wall (G.S3.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.S4.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - East Wall (G.S4.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.S5.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - East Wall (G.S5.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.S5.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.S5.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.S5.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.S5.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C8.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C8.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C8.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C8.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C12.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WSW20.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - West Wall (G.WSW20.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - WSW Wall (G.WSW20.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - SW Wall (G.WSW20.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - SSW Wall (G.WSW20.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - South Wall (G.WSW20.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - East Wall (G.WSW20.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.WSW20.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW21.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.C22.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - South Wall (G.C22.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C22.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C22.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW23.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW24.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - South Wall (G.WNW24.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C25.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I110)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I111)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I112)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I113)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C30.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C30.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C30.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C30.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C30.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C30.I134)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C32.I137)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C32.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C32.I141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C32.I144)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - NW Wall (G.C36.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - NNW Wall (G.C36.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - NNW Wall (G.C36.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 329": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 330": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 331": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 332": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 333": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 334": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.C36.I163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I164)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I165)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I169)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I170)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I171)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I174)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I179)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I182)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I183)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I184)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I187)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I188)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I189)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I190)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I191)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.W38.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - West Wall (G.W38.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.W38.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - NW Wall (G.W38.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - East Wall (G.W38.I199)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - East Wall (G.W38.I200)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.W38.I201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C40.I205)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C41.I207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C41.I208)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C41.I209)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C41.I210)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C41.I211)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - North Wall (G.C41.I212)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - South Wall (G.C41.I213)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C41.I214)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.NW42.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - South Wall (G.NW42.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - South Wall (G.NW42.I216)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.NW42.I217)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 1532": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - South Wall (G.S1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - South Wall (G.S3.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - South Wall (G.S8.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - East Wall (G.S8.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.S8.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.S8.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.S8.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.S8.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.S8.I23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - South Wall (G.C25.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C25.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C25.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C25.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C25.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C25.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C28.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C30.I134)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - East Wall (G.C30.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C30.I136)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - South Wall (G.C35.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.S3.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - East Wall (G.S3.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.S3.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C29.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C29.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C29.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C29.I134)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - North Wall (G.C29.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C29.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C41.I166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C43.I169)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C43.I170)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I171)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C43.I172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I174)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C43.I175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C43.I176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C43.I178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C43.I179)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C48.I231)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C48.I232)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C48.I233)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - West Wall (G.C48.I234)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C51.I243)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - South Wall (G.S4.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - West Wall (G.S4.I9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - West Wall (G.S4.I10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C14.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - SSW Wall (G.C14.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C14.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C14.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C14.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C14.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C14.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.N22.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.C28.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C32.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C34.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C43.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C43.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C43.I141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C43.I142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C43.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C45.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C45.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C45.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C48.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C49.I156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C49.I157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C49.I158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C49.I159)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C49.I160)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C49.I161)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - South Wall (G.WSW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - WNW Wall (G.WSW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.WSW1.I2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.S3.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.S3.I5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.S4.I13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.S4.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.I17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - West Wall (G.S4.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - WNW Wall (G.NW7.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.I28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.I38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - WNW Wall (G.ENE11.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - WNW Wall (G.ENE11.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - NW Wall (G.ENE11.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - NW Wall (G.ENE11.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - NNW Wall (G.ENE11.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - NNW Wall (G.ENE11.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I47)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I52)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I55)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I57)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.S9.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - South Wall (G.S2.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - East Wall (G.S2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.S2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - South Wall (G.S2.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.S2.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - West Wall (G.S2.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - South Wall (G.S6.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2 - SE Wall (G.S6.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.S6.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.S6.I18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - East Wall (G.S6.I19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2 - North Wall (G.S6.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - West Wall (G.S6.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.S2.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - South Wall (G.S2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - East Wall (G.S2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.S2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.S2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.S2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.S3.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - North Wall (G.S3.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.S4.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - East Wall (G.S4.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.S4.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.S4.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.S4.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C5.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW7.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - East Wall (G.C10.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C11.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C11.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C11.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C11.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C11.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C12.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C12.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C12.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C12.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C17.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C17.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C17.I58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - North Wall (G.C17.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C24.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C28.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C28.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I102)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - North Wall (G.C32.I103)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I104)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C32.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C36.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C36.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C36.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C36.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C36.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C36.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C36.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C36.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C37.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I134)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C40.I146)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - South Wall (G.C43.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I160)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C47.I161)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I162)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C47.I163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I164)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C47.I165)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C47.I167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I169)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I170)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I171)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C47.I172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I174)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C47.I177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I202)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I203)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I204)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I205)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I206)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I208)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I209)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I210)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I211)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I212)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I213)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I214)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I215)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I216)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I217)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - ESE Wall (G.C50.I218)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I219)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I220)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I221)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I222)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I223)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I224)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I225)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I226)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I227)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I228)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I229)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I230)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I231)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I232)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I233)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I234)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I235)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I236)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I237)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I238)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I239)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I240)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I241)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I242)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I243)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I244)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I245)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I246)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I247)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I248)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.C50.I249)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.C50.I250)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.C50.I251)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.C50.I252)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - SSW Wall (G.C50.I253)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I254)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.S6.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "4 - East Wall (G.S6.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.S6.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C10.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C10.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C10.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C10.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C10.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C14.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C14.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C14.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C14.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C14.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C14.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C14.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C14.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C14.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C15.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C16.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C16.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C16.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C16.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C16.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C17.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C19.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C19.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C19.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C19.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C34.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I150)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C34.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C34.I153)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - West Wall (G.C34.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C37.I194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - East Wall (G.C37.I195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C37.I196)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C37.I197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.S8.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.I26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.I47)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.I48)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.I49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - South Wall (G.S2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - East Wall (G.S2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C6.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - South Wall (G.C9.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C9.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C9.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C9.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C9.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C9.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C10.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C10.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NNW13.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NNW13.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - West Wall (G.NNW13.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.NNW13.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.NNW13.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.NNW13.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.NNW13.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.I44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - NNE Wall (G.NNW13.I45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - North Wall (G.N14.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - West Wall (G.N14.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.N14.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.N14.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.N14.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.N14.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C20.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C20.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C33.I141)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - East Wall (G.C33.I142)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - West Wall (G.C33.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C33.I144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C37.I150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.N38.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - West Wall (G.N38.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.N38.I153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.N38.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.N38.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C41.I159)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C41.I160)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C41.I161)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C41.I162)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C41.I163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C41.I164)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.SW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.SW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - ESE Wall (G.SW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - NNE Wall (G.SW1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.SW1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - NNE Wall (G.SW1.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.S4.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - East Wall (G.S4.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - West Wall (G.S4.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.E5.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - North Wall (G.E5.I12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - North Wall (G.E5.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.C16.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I83)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I84)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C23.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C23.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C23.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C23.I106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - North Wall (G.C23.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - West Wall (G.C23.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C23.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C23.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C29.I130)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - North Wall (G.C29.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C29.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.N39.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - North Wall (G.NW42.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NW42.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NW42.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW42.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW42.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - SSW Wall (G.NW42.I166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.NW42.I167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.WNW43.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I170)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I171)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I174)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C44.I179)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I182)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I183)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - ESE Wall (G.C44.I184)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I187)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I188)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I189)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C44.I190)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I191)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I196)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I199)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I200)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I202)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I203)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I204)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I205)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I206)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C44.I207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C44.I208)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C44.I209)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - SSW Wall (G.C44.I210)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - ESE Wall (G.C44.I211)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.S2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - East Wall (G.S2.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.S2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.S2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.S2.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.S4.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - East Wall (G.S4.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.SE5.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - South Wall (G.SE5.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.WNW8.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - East Wall (G.E9.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - North Wall (G.E9.I23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - North Wall (G.E9.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C11.I28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - East Wall (G.C11.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C11.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C11.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C12.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW14.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW14.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW14.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW14.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW14.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.NW14.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW14.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW14.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW14.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.NW14.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW14.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW14.I45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW14.I46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - North Wall (G.N17.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - North Wall (G.N17.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - West Wall (G.N17.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.N17.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.N17.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.N17.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.N17.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.N17.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C19.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.N20.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - West Wall (G.N20.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.N20.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.N20.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.N20.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.N20.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.N22.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - West Wall (G.N22.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.N23.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - East Wall (G.C24.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C24.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C24.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C24.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C24.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C24.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C24.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C24.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C24.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.N25.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - West Wall (G.N25.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.N25.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.N26.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW27.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW27.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW27.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW27.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW27.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - SSW Wall (G.NW27.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW27.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.C28.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C30.I138)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - South Wall (G.C31.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C31.I141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C31.I142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C31.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C31.I144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C31.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C31.I146)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - West Wall (G.C31.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C34.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C34.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C38.I160)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - East Wall (G.C40.I164)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I182)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I183)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I184)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C44.I187)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I188)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I189)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I190)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I191)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C44.I193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I196)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.C44.I198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I199)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I200)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I202)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I203)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C44.I204)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I205)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I206)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I208)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I209)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I210)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I211)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I212)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I213)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C44.I214)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C44.I215)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C44.I216)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - SSW Wall (G.C44.I217)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.C44.I218)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.C44.I219)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C45.I221)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C46.I223)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C46.I224)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C46.I225)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C46.I226)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C46.I227)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C46.I228)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.C49.I236)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C50.I238)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - West Wall (G.C50.I239)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - West Wall (G.C50.I240)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C50.I241)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C54.I250)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.SSW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.SSW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "7 - East Wall (G.SSW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.SSW1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - NNE Wall (G.SSW1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.SSW1.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - NNE Wall (G.SSW1.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.S5.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.S5.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.S5.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.ESE6.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.ESE6.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - North Wall (G.ESE6.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.ESE6.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.ESE6.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.ESE6.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.ESE6.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.ESE6.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.ESE6.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.E10.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.E11.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - North Wall (G.E11.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.E11.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.E11.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.E12.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - North Wall (G.E12.I33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.WNW15.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW16.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NW16.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW16.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW16.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW16.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - SSW Wall (G.NW16.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW16.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.N17.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.N17.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.N18.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.N18.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.N19.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - North Wall (G.N20.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - West Wall (G.N20.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.N20.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.N20.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C21.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.N23.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - North Wall (G.N23.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - West Wall (G.N23.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.N23.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NNW24.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NNW24.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NNW24.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - North Wall (G.NNW24.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - West Wall (G.NNW24.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NNW24.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.NNW24.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NNW24.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.NNW24.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW26.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - SW Wall (G.NW26.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW26.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW26.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.NW26.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - SSE Wall (G.NW26.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.NW26.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW26.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW26.I82)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - East Wall (G.C27.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C27.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C30.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C30.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C30.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C30.I95)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - North Wall (G.C30.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C30.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C30.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C30.I99)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - West Wall (G.C30.I100)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - South Wall (G.C36.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C38.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C38.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C38.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C38.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C39.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C39.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C39.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C39.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C41.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C42.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C42.I134)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C42.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C42.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C42.I137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C51.I164)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C51.I165)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C51.I166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C53.I169)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C53.I170)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C53.I171)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C53.I172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C53.I173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C55.I176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C56.I178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I182)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I183)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I184)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C57.I187)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I188)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I189)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I190)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I191)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I196)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I199)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I200)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I202)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I203)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I204)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I205)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I206)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I208)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I209)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C57.I210)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C57.I211)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I212)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C57.I213)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C57.I214)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I216)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I217)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I218)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I219)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I220)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I221)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I222)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I223)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I224)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I225)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I226)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I227)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I228)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I229)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I230)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I231)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I232)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I233)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I234)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I235)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I236)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I237)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I238)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I239)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I240)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I241)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I242)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I243)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I244)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I245)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I246)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I247)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I248)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I249)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I250)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I251)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I252)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C58.I253)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C58.I254)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C58.I255)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - SSW Wall (G.C58.I256)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C58.I257)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C58.I258)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C59.I260)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C59.I261)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C61.I264)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C61.I265)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C61.I266)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C62.I268)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I270)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I271)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C63.I272)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I273)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I274)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C63.I275)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I276)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I277)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - West Wall (G.C63.I278)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I279)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I280)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C63.I281)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.WSW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.WSW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.WSW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.S2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "8 - East Wall (G.S2.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - North Wall (G.S2.I5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - North Wall (G.S2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C6.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.E10.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.E10.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW13.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW13.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW13.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW13.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW13.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.NW13.I35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW13.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C36.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - South Wall (G.C36.I156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - West Wall (G.C36.I157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - East Wall (G.C39.I162)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - East Wall (G.C53.I246)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - North Wall (G.C53.I247)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "7 - East Wall (G.C53.I248)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - South Wall (G.S3.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C8.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C8.I25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - East Wall (G.E13.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.E13.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW29.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW29.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW29.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW29.E38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW29.E39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.NW29.I89)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW29.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C31.I102)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "8 - South Wall (G.C35.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C35.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C35.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - East Wall (G.C35.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C35.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C35.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C35.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - West Wall (G.C44.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - South Wall (G.C46.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C16.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - East Wall (G.C16.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - South Wall (G.C14.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - East Wall (G.C14.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C14.I44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - South Wall (G.C27.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - North Wall (G.C27.I94)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "3 - East Wall (G.C34.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C34.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - West Wall (G.C34.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - South Wall (G.C13.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C13.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C13.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - North Wall (G.C27.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - West Wall (G.C28.I89)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "4 - North Wall (G.C39.I203)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - North Wall (G.C3.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - East Wall (G.C3.I5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - East Wall (G.E7.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.E7.I10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "5 - West Wall (G.W10.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - West Wall (G.W10.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.W10.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - East Wall (G.W10.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - North Wall (G.W10.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - East Wall (G.E7.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - North Wall (G.NW11.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.NW11.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.NW11.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW11.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW11.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.NW11.I35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - East Wall (G.NW11.I36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - East Wall (G.C18.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - South Wall (G.C18.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C18.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - West Wall (G.C26.I124)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - West Wall (G.C26.I125)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "6 - North Wall (G.C32.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - North Wall (G.C11.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C11.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - North Wall (G.C18.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "1 - East Wall (G.C29.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C8.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - North Wall (G.C9.I32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "P - South Wall (G.S2.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - North Wall (G.N6.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - South Wall (G.S10.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - West Wall (G.S10.I43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - South Wall (G.C12.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - North Wall (G.NNW13.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - West Wall (G.NNW13.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - East Wall (G.NNW13.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-8": { + "G - North Wall (G.NNW1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - WNW Wall (G.NNW1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - WNW Wall (G.NNW1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - WNW Wall (G.W3.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NE4.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NE4.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W5.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W8.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W9.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW15.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW15.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW16.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW16.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W18.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W19.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - NE Wall (G.NNE20.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S5.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW6.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW13.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WSW14.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW14.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - WSW Wall (G.WSW14.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - SW Wall (G.WSW14.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.WSW14.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WSW14.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C15.I77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C15.I78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C17.I83)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW20.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.NW21.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NW21.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NW Wall (G.NW21.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.NW21.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.NW21.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.N22.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C28.I133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C28.I134)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C28.I135)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.WNW1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.WNW1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Wall (G.WNW1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Wall (G.WNW1.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.WNW1.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.WNW1.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.WNW1.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.W2.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.W2.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.W2.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SW Wall (G.W2.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SSW Wall (G.W2.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.W2.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.S5.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.S7.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.S7.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.S7.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.S12.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C13.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C15.I49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C23.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C23.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C23.I91)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 319": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I116)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C17.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C17.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.S1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW6.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WSW8.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.WSW8.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WSW Wall (G.WSW8.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - SW Wall (G.WSW8.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - SSW Wall (G.WSW8.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.WSW8.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C15.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW16.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NW Wall (G.WNW16.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.WNW16.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C26.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C26.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C26.I91)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NW Wall (G.C48.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNW Wall (G.C48.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNW Wall (G.C48.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C48.I182)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I183)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C48.I184)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW49.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.S1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.S2.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.S3.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.S4.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.S5.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WSW20.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.WSW20.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WSW Wall (G.WSW20.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - SW Wall (G.WSW20.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - SSW Wall (G.WSW20.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.WSW20.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW21.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.C22.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW23.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW24.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C32.I137)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C32.I144)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NW Wall (G.C36.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NNW Wall (G.C36.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NNW Wall (G.C36.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 329": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 330": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 331": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 332": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 333": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 334": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I169)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I170)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I171)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I187)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.W38.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.W38.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.W38.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NW Wall (G.W38.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.W38.I199)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C41.I211)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C41.I212)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.NW42.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.NW42.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.S1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.S3.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.S8.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.S8.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C30.I134)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C30.I136)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.S3.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C29.I134)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C48.I233)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C51.I243)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.S4.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.S4.I9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.S4.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C14.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.N22.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.WSW1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - WNW Wall (G.WSW1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.WSW1.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S3.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.S3.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.S4.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - WNW Wall (G.NW7.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - WNW Wall (G.ENE11.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - WNW Wall (G.ENE11.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - NW Wall (G.ENE11.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - NW Wall (G.ENE11.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - NNW Wall (G.ENE11.E29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - NNW Wall (G.ENE11.E30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I52)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S9.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S2.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.S6.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.S6.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.S6.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.S2.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.S2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.S3.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.S4.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW7.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C17.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C32.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C40.I146)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I164)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C47.I165)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I209)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I210)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I211)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I212)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I246)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I247)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.S6.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I150)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C34.I153)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.S8.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.I49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.S2.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C6.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NNW13.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NNW13.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNE Wall (G.NNW13.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.N14.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C33.I141)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C33.I142)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.N38.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.SW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.SW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.S4.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.S4.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.E5.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.E5.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I83)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C23.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C23.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C29.I130)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.N39.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.NW42.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NW42.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NW42.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW42.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW42.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.WNW43.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I174)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I191)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I196)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.S2.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.S4.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.SE5.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.SE5.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.WNW8.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.E9.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.E9.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C11.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW14.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW14.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW14.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW14.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW14.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW14.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.N17.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.N17.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.N20.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.N22.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.N23.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.N25.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.N26.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW27.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW27.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW27.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW27.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW27.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C30.I138)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C31.I146)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C38.I160)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C44.I187)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I188)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I202)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I205)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C50.I238)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C50.I239)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.SSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.SSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.S5.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.ESE6.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.ESE6.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.E10.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.E11.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.E12.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.E12.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.WNW15.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW16.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NW16.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW16.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW16.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW16.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.N17.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.N18.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.N19.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.N20.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.N23.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.N23.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NNW24.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NNW24.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NNW24.E29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.NNW24.E30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW26.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I81)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW26.I82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C30.I95)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C30.I99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C30.I100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I217)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I229)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I277)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C63.I278)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I279)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.WSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.WSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.0638004283036505", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.S2.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.S2.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.S2.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.NW13.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C39.I162)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C53.I246)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C53.I247)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C53.I248)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C8.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.NW29.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C31.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C14.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C27.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C28.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C39.I203)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.C3.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.C3.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.E7.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.NW11.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.NW11.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C26.I124)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C26.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C9.I32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.S10.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-9": { + "2 - Flr (G.WNW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.W2.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C4.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.S5.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.S7.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C10.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C11.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.S12.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C13.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C14.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C15.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C18.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C23.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.NNW24.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C25.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C17.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C19.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C20.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.S1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW6.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.WSW8.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C13.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C15.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW16.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C18.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C20.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C21.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C22.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C23.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C26.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C30.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C33.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C35.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C41.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C44.I153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C46.I157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C48.I178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW49.I192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.S1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.S2.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.S3.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.S4.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.S5.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C8.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C11.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C12.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C18.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.WSW20.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.WNW21.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C22.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.WNW23.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.WNW24.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C25.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C26.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C29.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C30.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C31.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C32.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C33.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C36.I156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.W38.I198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C40.I204)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C41.I206)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.NW42.I215)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "4 - Flr (G.NW42.I215) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "5 - Flr (G.S1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.C2.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.C4.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.C6.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.S3.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.S8.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C17.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C25.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C28.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C30.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C35.I146)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.S3.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C15.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C29.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C37.I158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C41.I165)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C42.I167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C43.I168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C48.I230)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C51.I242)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.S4.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C14.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.N22.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C28.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C32.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C34.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C37.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C43.I138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C45.I146)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C47.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C48.I153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C49.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.WSW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.S3.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.S4.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.NW7.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.ENE11.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.S9.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.S6.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.S2.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.S3.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.S4.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C5.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW7.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C9.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C10.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C11.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C12.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C17.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C19.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C24.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C28.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C29.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C31.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C32.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C36.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C37.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C38.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C40.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C42.I150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C43.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C45.I156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C47.I159)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C50.I200)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.S6.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C7.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C9.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C10.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C14.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C15.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C16.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C17.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C19.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C34.I146)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C37.I193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.S8.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.NNW9.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.S2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C6.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C9.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C10.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.NNW13.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.N14.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C19.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C20.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C33.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C34.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C37.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.N38.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C40.I157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C41.I158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.SW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.S4.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.E5.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C12.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C15.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C16.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C21.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C22.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C23.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C24.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C27.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C29.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C36.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.N39.I156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.NW42.I165)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.WNW43.I168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C44.I169)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.S2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.S4.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.SE5.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C7.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.WNW8.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.E9.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C11.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C12.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.NW14.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C16.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.N17.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C18.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C19.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.N20.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C21.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.N22.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.N23.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C24.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.N25.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.N26.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.NW27.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C28.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C30.I137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C31.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C32.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C33.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C34.I150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C35.I153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C38.I159)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C40.I163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C44.I180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C45.I220)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C46.I222)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C47.I229)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C49.I235)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C50.I237)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C54.I249)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.SSW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.S5.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.ESE6.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C7.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C9.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.E10.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.E11.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.E12.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.WNW15.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.NW16.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.N17.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.N18.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.N19.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.N20.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C21.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.N23.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.NNW24.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C25.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.NW26.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C27.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C30.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C33.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C36.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C38.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C39.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C40.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C41.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C42.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C50.I162)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C51.I163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C52.I167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C53.I168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C55.I175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C56.I177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C57.I179)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C58.I215)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C59.I259)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C60.I262)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C61.I263)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C62.I267)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C63.I269)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.WSW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.S2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C54.I174)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C6.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.E10.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.NW13.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C36.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C39.I161)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C52.I244)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "7 - Flr (G.C53.I245)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.S3.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C8.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.E13.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.NW29.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C31.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C35.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C44.I144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "8 - Flr (G.C46.I150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C16.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C22.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C14.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C25.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C27.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C34.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "3 - Flr (G.C39.I144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C13.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C27.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C28.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C35.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "4 - Flr (G.C39.I202)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.C3.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.C5.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.E7.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "5 - Flr (G.W10.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.E7.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.NW11.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C18.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C26.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C31.I137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "6 - Flr (G.C32.I138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C3.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C8.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2 - Flr (G.C9.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.S2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.C5.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.N6.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.C8.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.S10.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.C12.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "P - Flr (G.NNW13.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-10": { + "4 - Flr (G.NW42.I215)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.05144609113789041", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-11": { + "G - Flr (G.NNW1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C2.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.W3.U3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.NE4.U4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.W5.U5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C6.U6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C7.U7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.W8.U8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.W9.U9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C10.U10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C12.U12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C13.U13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C14.U14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.SSW15.U15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.SSW16.U16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C17.U17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.W18.U18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.W19.U19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.NNE20.U20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C21.U21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.E22.U22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C23.U23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C24.U24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "G - Flr (G.C25.U25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.S1.I1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.S3.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C4.I16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.S5.I19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.WNW6.I21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C7.I61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C8.I62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C9.I63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C10.I65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C12.I70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.WNW13.I71)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.WSW14.I72)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C15.I75)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C17.I81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C19.I87)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.WNW20.I88)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.NW21.I91)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.N22.I94)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C23.I98)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C24.I120)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C25.I122)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C26.I124)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C27.I128)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C28.I130)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.S2.I3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C16.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "G - Flr (G.C11.U11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C11.I68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C18.I85)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "1 - Flr (G.C29.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-12": { + "G - Flr (G.NNW1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C2.U2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.W3.U3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.NE4.U4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.W5.U5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C6.U6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C7.U7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.W8.U8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.W9.U9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C10.U10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C12.U12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C13.U13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C14.U14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.SSW15.U15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.SSW16.U16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C17.U17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.W18.U18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.W19.U19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.NNE20.U20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C21.U21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.E22.U22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C23.U23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C24.U24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C25.U25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.S1.I1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.S3.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C4.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.S5.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.WNW6.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C7.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C8.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C9.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C10.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C12.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.WNW13.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.WSW14.I72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C15.I75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C17.I81)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C19.I87)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.WNW20.I88)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.NW21.I91)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.N22.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C23.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C24.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C25.I122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C26.I124)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C27.I128)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C28.I130)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.S2.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "G - Flr (G.C11.U11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C11.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "1 - Flr (G.C18.I85)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + } + }, + "5-13": { + "G - East Wall (G.NNW1.I1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNW1.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNW1.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.W3.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.W3.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.W3.I7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.W3.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.W3.I9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NE4.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.I11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NE4.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.W5.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W5.I14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C7.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C7.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I52)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C7.I56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C7.I57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.W8.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.W8.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.W8.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.W8.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.W8.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.W8.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.W8.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.W8.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C10.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C10.I67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW15.I69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.SSW15.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW15.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW15.I72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW16.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW16.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.SSW16.I75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.SSW16.I76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW16.I77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW16.I78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C17.I79)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.W18.I80)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.W19.I81)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I83)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I85)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I86)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I87)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - SW Wall (G.NNE20.I88)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I91)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I95)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I97)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.I100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.NNE20.I111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.NNE20.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C21.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C21.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.E22.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.E22.I116)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.E22.I118)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.E22.I119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.E22.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.E22.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.I122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.E22.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.I124)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.E22.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C23.I126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C24.I127)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C24.I128)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - South Wall (G.C25.I129)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C25.I130)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - East Wall (G.C25.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - West Wall (G.C25.I132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C25.I133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.S1.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C4.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.C4.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.S5.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.WNW6.I22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW6.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I52)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.WNW6.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.WNW6.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.WNW6.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C9.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C10.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.C10.I67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WSW14.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.WSW14.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C15.I76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C17.I82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C17.I84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW20.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.WNW20.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.NW21.I92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.NW21.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.N22.I95)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.N22.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NE Wall (G.N22.I97)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.C23.I100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - SW Wall (G.C23.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.C23.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.C23.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C23.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.C23.I111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNE Wall (G.C23.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NNE Wall (G.C23.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - NE Wall (G.C23.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C23.I116)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.C23.I118)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C23.I119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C24.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C25.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C26.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C26.I126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.C26.I127)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C27.I129)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.C28.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C28.I132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C28.I136)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C28.I137)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.C28.I138)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.WNW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.W2.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.I9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C4.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.S5.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.S7.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.S7.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.S7.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.S7.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.S7.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C10.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C11.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C11.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.S12.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C13.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C13.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C13.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C14.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C14.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C14.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C14.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C14.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C14.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C14.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C15.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C15.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1704": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1705": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1706": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1707": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1708": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1710": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C18.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C18.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.C18.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C18.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C18.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I79)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1709": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1711": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C23.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SW Wall (G.C23.I92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SSW Wall (G.C23.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - ESE Wall (G.C23.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C23.I95)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - ENE Wall (G.C23.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.C23.I97)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Wall (G.C23.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.NNW24.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SW Wall (G.NNW24.I100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SSW Wall (G.NNW24.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SE Wall (G.NNW24.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.I118)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.I119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.NNW24.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.I124)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - ENE Wall (G.NNW24.I126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I127)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I128)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.I129)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C25.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C25.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1712": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C17.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C17.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C17.I56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C19.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.C19.I81)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C19.I82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C20.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.S1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW6.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.WNW6.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.WSW8.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.WSW8.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WSW8.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.WSW8.I22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C13.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C13.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C13.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C13.I40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C15.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C15.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C15.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW16.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C18.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C18.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C18.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C18.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C18.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C18.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C20.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C20.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C21.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C22.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C22.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C22.I72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C22.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C22.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C22.I75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C22.I76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C23.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C26.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I83)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C26.I84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I85)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C26.I86)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C26.I87)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C26.I88)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C30.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C33.I107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C35.I112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C41.I147)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C41.I148)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C41.I149)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C44.I153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C44.I154)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C44.I155)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C46.I157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C46.I158)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C48.I178)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I179)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C48.I180)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I181)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C48.I185)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I186)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I187)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I188)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C48.I189)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I190)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C48.I191)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW49.I192)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - SSW Wall (G.WNW49.I193)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.WNW49.I194)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.WNW49.I195)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.WNW49.I196)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.WNW49.I197)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.WNW49.I198)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.WNW49.I199)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.S1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.S2.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.S2.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.S2.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.S3.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.S3.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.S4.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.S4.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.S5.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.S5.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.S5.I11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.S5.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.S5.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.S5.I14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C8.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C8.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C8.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C8.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C8.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C8.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C8.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C11.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C12.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C12.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C18.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.WSW20.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.WSW20.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.WSW20.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.WNW21.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C22.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C22.I77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C22.I78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C22.I79)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.WNW23.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.WNW24.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.WNW24.I82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C25.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C25.I84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C26.I85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C29.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I91)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I95)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I97)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C29.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I116)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I118)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I124)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I127)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C30.I128)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C30.I129)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C30.I130)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C30.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C30.I132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C30.I133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C30.I134)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C31.I135)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C32.I136)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I138)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C32.I139)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I140)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C32.I141)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I142)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C32.I143)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C33.I145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C36.I156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.C36.I163)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I164)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I165)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I166)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I167)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I168)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I172)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I173)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I174)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I175)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I176)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I177)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I178)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I179)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I180)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I181)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I182)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I183)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I184)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I185)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I186)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I188)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I189)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I190)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I191)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I192)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.W38.I198)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.W38.I200)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.W38.I201)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C40.I204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C40.I205)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C41.I206)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C41.I207)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C41.I208)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C41.I209)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C41.I210)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C41.I213)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C41.I214)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.NW42.I216)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.NW42.I217)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 1532": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.S1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.C2.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.C4.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.C6.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.S3.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.S8.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.S8.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.S8.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.S8.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.S8.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.S8.I22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C17.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C25.I112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C25.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C25.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C25.I116)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I118)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C25.I119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C25.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C25.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C25.I122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C28.I127)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C28.I128)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C30.I133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C30.I135)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C35.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C35.I147)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.S3.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.S3.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.S3.I14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C15.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C29.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C29.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C29.I132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C29.I133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C29.I135)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C29.I136)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C37.I158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C41.I165)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C41.I166)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C42.I167)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C43.I168)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C43.I169)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C43.I170)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I171)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C43.I172)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I173)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I174)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C43.I175)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C43.I176)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C43.I177)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C43.I178)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C43.I179)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C48.I230)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C48.I231)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C48.I232)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C48.I234)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C51.I242)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.S4.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C14.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - SSW Wall (G.C14.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C14.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C14.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C14.I40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C14.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C14.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.N22.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C28.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C28.I87)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C32.I103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C32.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C34.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C34.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C37.I118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C43.I138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C43.I139)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C43.I140)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C43.I141)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C43.I142)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C43.I143)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C45.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C45.I147)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C45.I148)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C45.I149)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C47.I152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C48.I153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C48.I154)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C49.I155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C49.I156)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C49.I157)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C49.I158)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C49.I159)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C49.I160)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C49.I161)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.WSW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.S3.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.S4.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.S4.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.S4.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.NW7.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.ENE11.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.S9.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.S2.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S2.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.S2.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - South Wall (G.S2.I11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.S2.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.S2.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - West Wall (G.S2.I14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.S6.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SE Wall (G.S6.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.S6.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.S6.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Wall (G.S6.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.S2.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.S2.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.S2.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.S2.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.S2.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.S3.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.S3.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.S4.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.S4.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.S4.I11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.S4.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.S4.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C5.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C5.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.WNW7.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C9.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C10.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C10.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C11.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C11.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C11.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C11.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C11.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C11.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C12.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C12.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C12.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C12.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C12.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C17.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C17.I52)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C17.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C17.I56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.I57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C17.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C19.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C24.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C24.I79)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C28.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C28.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C28.I97)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C29.I98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C31.I100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C32.I101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C32.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C36.I113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C36.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C36.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C36.I116)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C36.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C36.I118)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C36.I119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C36.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C36.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C37.I122)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C37.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C38.I124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I127)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I128)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I129)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I130)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C38.I133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I134)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I135)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C38.I136)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I137)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I138)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I139)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I140)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I141)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C38.I142)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C38.I143)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C40.I145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C42.I150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C43.I151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C43.I152)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C45.I156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C47.I159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I160)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C47.I161)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I162)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C47.I163)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I166)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C47.I167)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I168)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I169)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I170)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I171)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C47.I172)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I173)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I174)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I175)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C47.I176)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C47.I177)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C50.I200)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I201)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I202)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I203)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I204)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I205)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I206)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I207)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I208)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I213)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I214)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I215)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I216)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I217)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - ESE Wall (G.C50.I218)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I219)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I220)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I221)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I222)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I223)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I224)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I225)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I226)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I227)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I228)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I229)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I230)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I231)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I232)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I233)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I234)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C50.I235)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I236)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I237)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I238)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I239)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I240)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I241)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I242)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I243)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I244)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I245)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I248)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.C50.I249)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.C50.I250)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNE Wall (G.C50.I251)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.C50.I252)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - SSW Wall (G.C50.I253)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I254)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.S6.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.S6.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.S6.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C7.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C9.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C10.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C10.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C10.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C10.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C10.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C10.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C14.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C14.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C14.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C14.I49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C14.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C14.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C14.I52)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C14.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C14.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C14.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C15.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C15.I57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C16.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C16.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C16.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C16.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C16.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C16.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C17.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C17.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C19.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C19.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C19.I69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C19.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C19.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C34.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I147)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C34.I148)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I149)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I151)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C34.I152)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C34.I154)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C37.I193)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C37.I194)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - East Wall (G.C37.I195)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C37.I196)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C37.I197)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.S8.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.NNW9.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.S2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.S2.I7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C6.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C9.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C9.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C9.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C9.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C9.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C9.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C9.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C10.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C10.I32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C10.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.NNW13.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.NNW13.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.NNW13.I40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.NNW13.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.NNW13.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.NNW13.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.N14.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.N14.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.N14.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.N14.I49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.N14.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.N14.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C19.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C20.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C20.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C20.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C33.I140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C33.I143)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C33.I144)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C34.I145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C37.I149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C37.I150)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.N38.I151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.N38.I152)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.N38.I153)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.N38.I154)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.N38.I155)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C40.I157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C41.I158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C41.I159)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C41.I160)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C41.I161)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C41.I162)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C41.I163)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C41.I164)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.SW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - ESE Wall (G.SW1.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNE Wall (G.SW1.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.SW1.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNE Wall (G.SW1.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.S4.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.S4.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.E5.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.E5.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C12.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C15.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C16.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.C16.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I79)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I80)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.I81)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C16.I85)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C21.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C22.I96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C23.I97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C23.I99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C23.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C23.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C23.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C23.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C23.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C23.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C24.I111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C27.I126)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C29.I129)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C29.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C29.I132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C36.I148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.N39.I156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.NW42.I165)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - SSW Wall (G.NW42.I166)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.NW42.I167)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.WNW43.I168)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C44.I169)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I170)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I171)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I172)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I173)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I175)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I176)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I177)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I178)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C44.I179)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I180)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I181)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I182)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I183)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - ESE Wall (G.C44.I184)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I185)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I186)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I187)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I188)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I189)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C44.I190)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I192)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I193)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I194)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I195)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I197)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I198)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C44.I199)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I200)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I201)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I202)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I203)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I204)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I205)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I206)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C44.I207)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C44.I208)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.C44.I209)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - SSW Wall (G.C44.I210)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - ESE Wall (G.C44.I211)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.S2.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.S2.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.S2.I9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.S2.I10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.S2.I11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.S4.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.S4.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.SE5.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C7.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.WNW8.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.E9.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.E9.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C11.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C11.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C11.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C11.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C12.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C12.I33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.NW14.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW14.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.NW14.I39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW14.I40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW14.I41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW14.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.NW14.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW14.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C16.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.N17.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.N17.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.N17.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.N17.I52)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.N17.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.N17.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.N17.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C18.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C19.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C19.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.N20.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.N20.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.N20.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.N20.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.N20.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.N20.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C21.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.N22.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.N22.I67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.N23.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C24.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C24.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C24.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C24.I72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C24.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C24.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C24.I75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C24.I76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C24.I77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C24.I78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.N25.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.N25.I80)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.N25.I81)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.N26.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.NW27.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - SSW Wall (G.NW27.I84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW27.I85)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C28.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I87)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.I88)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I91)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.I92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I95)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I97)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I116)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I118)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.C28.I119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I124)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C28.I126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C28.I127)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I128)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I129)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C30.I137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C31.I139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C31.I140)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C31.I141)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C31.I142)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C31.I143)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C31.I144)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C31.I145)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C31.I147)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C32.I148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C33.I149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C34.I150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C34.I151)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C34.I152)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C35.I153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C38.I159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C40.I163)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C40.I164)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C44.I180)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I181)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I182)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I183)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I184)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I185)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I186)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I189)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I190)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I191)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I192)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C44.I193)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I194)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I195)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I196)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I197)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.C44.I198)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I199)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I200)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I201)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I203)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C44.I204)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I206)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C44.I207)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I208)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I209)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I210)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I211)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I212)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I213)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C44.I214)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C44.I215)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C44.I216)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - SSW Wall (G.C44.I217)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.C44.I218)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.C44.I219)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C45.I220)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C45.I221)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C46.I222)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C46.I223)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C46.I224)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C46.I225)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.C46.I226)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C46.I227)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C46.I228)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C47.I229)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C49.I235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.C49.I236)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C50.I237)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C50.I240)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C50.I241)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C54.I249)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C54.I250)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.SSW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.SSW1.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - ESE Wall (G.SSW1.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNE Wall (G.SSW1.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.SSW1.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNE Wall (G.SSW1.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.S5.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.S5.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.S5.I13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.ESE6.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.ESE6.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.ESE6.I16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.ESE6.I17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.ESE6.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.ESE6.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.ESE6.I20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.ESE6.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C7.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C9.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.E10.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.E11.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.E11.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.E11.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.E11.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.E12.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.WNW15.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.NW16.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - SSW Wall (G.NW16.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW16.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.N17.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.N17.I48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.N18.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.N18.I50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.N19.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.N20.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.N20.I53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.N20.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.N20.I55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C21.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C21.I57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.N23.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.N23.I60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.N23.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.NNW24.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.NNW24.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NNW24.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.NNW24.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NNW24.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.NNW24.I67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C25.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.NW26.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - SW Wall (G.NW26.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW26.I71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW26.I72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.NW26.I73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - SSE Wall (G.NW26.I74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.NW26.I75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW26.I78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I79)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I80)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C27.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C27.I84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C27.I85)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C30.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C30.I92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C30.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C30.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C30.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C30.I97)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C30.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C33.I105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C36.I116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C36.I117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C38.I119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C38.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C38.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C38.I122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C38.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C39.I124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C39.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C39.I126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C39.I127)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C39.I128)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C40.I129)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C41.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C41.I131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C42.I132)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C42.I133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C42.I134)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C42.I135)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C42.I136)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C42.I137)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C50.I162)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C51.I163)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C51.I164)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C51.I165)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C51.I166)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C52.I167)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C53.I168)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C53.I169)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C53.I170)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C53.I171)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C53.I172)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C53.I173)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C55.I175)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C55.I176)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C56.I177)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C56.I178)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C57.I179)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I180)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I181)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I182)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I183)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I184)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I185)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I186)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C57.I187)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I188)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I189)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I190)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I191)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I192)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I193)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I194)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I195)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C57.I196)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I197)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I198)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I199)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I200)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I201)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I202)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I203)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I204)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C57.I205)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I206)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I207)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I208)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C57.I209)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C57.I210)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C57.I211)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C57.I212)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C57.I213)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C57.I214)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C58.I215)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I216)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I218)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I219)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I220)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I221)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I222)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I223)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I224)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I225)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I226)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I227)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I228)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I230)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I231)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I232)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I233)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I234)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I235)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I236)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I237)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I238)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I239)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I240)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I241)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I242)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I243)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I244)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I245)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I246)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C58.I247)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I248)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I249)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I250)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I251)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C58.I252)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C58.I253)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNE Wall (G.C58.I254)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C58.I255)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - SSW Wall (G.C58.I256)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C58.I257)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - ESE Wall (G.C58.I258)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C59.I259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C59.I260)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C59.I261)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C60.I262)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C61.I263)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C61.I264)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C61.I265)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C61.I266)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C62.I267)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C62.I268)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C63.I269)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I270)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I271)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C63.I272)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I273)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I274)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C63.I275)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C63.I276)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I280)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C63.I281)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.WSW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.WSW1.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.S2.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.S2.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C54.I174)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C6.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C6.I19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.E10.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.E10.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.E10.I26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW13.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW13.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.NW13.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW13.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW13.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.NW13.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW13.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C36.I154)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Wall (G.C36.I155)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Wall (G.C36.I156)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - West Wall (G.C36.I157)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C39.I161)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C52.I244)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - Flr (G.C53.I245)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.S3.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.S3.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C8.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C8.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.E13.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.E13.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.E13.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW29.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.NW29.E36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW29.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW29.E38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW29.E39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.NW29.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW29.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C31.I101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C35.I108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C35.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C35.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C35.I111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Wall (G.C35.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C35.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C35.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C35.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C44.I144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - West Wall (G.C44.I145)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - Flr (G.C46.I150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Wall (G.C46.I151)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C16.I80)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - Flr (G.C16.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "proposed_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "baseline_surface_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "proposed_surface_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C16.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - East Wall (G.C16.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C22.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C14.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C14.I42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C14.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C25.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C27.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Wall (G.C27.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C34.I108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - East Wall (G.C34.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C34.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Wall (G.C34.I111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - Flr (G.C39.I144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C13.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Wall (G.C13.I43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C13.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Wall (G.C13.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C27.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Wall (G.C27.I87)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C28.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C35.I155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - Flr (G.C39.I202)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.C3.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.C5.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.E7.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.E7.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.W10.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - West Wall (G.W10.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.W10.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - Flr (G.W10.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Wall (G.W10.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Wall (G.W10.I52)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.E7.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.E7.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.NW11.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.NW11.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.NW11.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW11.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW11.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.NW11.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C18.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Wall (G.C18.I88)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Wall (G.C18.I89)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - West Wall (G.C18.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C26.I123)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C31.I137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - Flr (G.C32.I138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Wall (G.C32.I139)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "G - North Wall (G.C11.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C11.I69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - North Wall (G.C18.I86)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - East Wall (G.C29.I140)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "1 - Flr (G.C29.I139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "proposed_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "baseline_surface_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "proposed_surface_f_factor", + "value": "0.8067672932580026", + "unit": "Btu/(hr*ft*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C3.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C8.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Wall (G.C8.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - Flr (G.C9.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S2.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Roof (G.S2.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.S2.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Roof (G.C5.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.C5.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.N6.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Roof (G.N6.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.N6.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Roof (G.C8.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.C8.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.S10.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Roof (G.S10.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.S10.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - South Wall (G.C12.E33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Roof (G.C12.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.C12.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - North Wall (G.NNW13.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - West Wall (G.NNW13.E36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Roof (G.NNW13.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08281736798517178", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03745991937671465", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - Flr (G.NNW13.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08170000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "P - East Wall (G.NNW13.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.09450000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.3246000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-14": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:HOSPITAL missing:is_all_new" + } + } + }, + "5-15": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:HOSPITAL missing:is_all_new", + "BASELINE_0_MISSING_DATA": "id:HOSPITAL missing:is_all_new" + } + } + }, + "5-16": { + "G - North Wall (G.NNW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - WNW Wall (G.NNW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - WNW Wall (G.NNW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - WNW Wall (G.W3.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.W3.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - East Wall (G.NE4.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - East Wall (G.NE4.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - North Wall (G.NE4.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.W5.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.W8.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.W9.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW15.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW15.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - South Wall (G.SSW16.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.SSW16.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.W18.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - West Wall (G.W19.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - East Wall (G.NNE20.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - NE Wall (G.NNE20.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - North Wall (G.NNE20.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "G - East Wall (G.E22.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.S1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.S3.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.S5.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW6.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW13.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WSW14.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - West Wall (G.WSW14.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - WSW Wall (G.WSW14.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - SW Wall (G.WSW14.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - SSW Wall (G.WSW14.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.WSW14.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - North Wall (G.C15.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - East Wall (G.C15.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.C17.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.WNW20.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - North Wall (G.NW21.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - NNW Wall (G.NW21.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - NW Wall (G.NW21.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.NW21.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - WNW Wall (G.NW21.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - North Wall (G.N22.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - North Wall (G.C28.I133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - East Wall (G.C28.I134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.C28.I135)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.WNW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "11.123548379999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "12.694991799999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.WNW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "15.386558040000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "17.5602444", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NW Wall (G.WNW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "15.572760840000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "17.772752399999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NW Wall (G.WNW1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.597459469999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "15.518396699999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.WNW1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "17.73529947", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "20.240796700000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.WNW1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "48.33462627", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "55.162944700000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.WNW1.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "33.44460903", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "38.169388299999994", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.W2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "462.24845100000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "527.55111", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.W2.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.7302484", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.777924", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WSW Wall (G.W2.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.28807916", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.97964760000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - SW Wall (G.W2.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "18.9519015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "21.62745725", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - SSW Wall (G.W2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.84977", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.228555", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.W2.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "17.1753141", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.60005815", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.W2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - East Wall (G.W2.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.S5.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "53.984700000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "61.606049999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.S7.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "89.15655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "101.743325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.S7.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.S7.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.S12.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.17185", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.137274999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.C13.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.522589999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "18.855185", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.C15.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - East Wall (G.C18.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.C18.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.C23.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.C23.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.C23.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.802000000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.149499999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.524782000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.8331545", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.77366216", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.117162459999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.757029080000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.09818173", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.836498240000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.18886744", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.361249519999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.36425361999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.14365104000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "70.91481924", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "61.319389519999994", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.97421861999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NNE Wall (G.NNW24.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "61.67792480000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "70.3833588", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.836414160000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.42307446", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "453.42022496000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "517.41751176", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NE Wall (G.NNW24.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "61.59537544", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "70.28915814", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.NNW24.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.33988592", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "68.85646452", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NNW Wall (G.NNW24.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "67.7459188", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "77.3078103", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - NW Wall (G.NNW24.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "51.84962264000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "59.16785634", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "47.71653642000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.4575362", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "78.01897319999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "89.04085199999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - WNW Wall (G.NNW24.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "19.62008559", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "22.3918499", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - West Wall (G.NNW24.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.50221703999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "108.98172773999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 319": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "206.892", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "236.11999999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.NNW24.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - East Wall (G.NNW24.I116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - East Wall (G.C17.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.C17.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.S1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "32.554410000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "37.15031499999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW6.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "74.84524992", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "85.41877120000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WSW8.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.723528", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.640080000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.WSW8.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "36.01575936", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "41.10376959999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - WSW Wall (G.WSW8.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.25497644000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.9418684", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - SW Wall (G.WSW8.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "18.855710579999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "21.517686469999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - SSW Wall (G.WSW8.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.882488", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.265892", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.WSW8.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "17.16517152", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.58848368", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C15.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "65.30024", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "74.51693999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW16.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.740396", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.079201", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - NW Wall (G.WNW16.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.659694759999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.987109309999994", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.WNW16.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "11.52056404", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.146615989999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C26.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.C26.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C26.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - NW Wall (G.C48.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.802000000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.149499999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - NNW Wall (G.C48.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.85374736", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.208551160000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - NNW Wall (G.C48.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.321822960000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.31926226", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C48.I182)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.C48.I183)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C48.I184)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW49.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "109.44690246", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "124.90866059999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.S1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "32.39082", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "36.96363", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.S2.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "264.36143999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "301.68296", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "The vertical fenestration is not distributed across baseline opaque surfaces in the same proportion as in the proposed design. Verify if envelope is existing or altered and can be excluded from this check." + }, + "4 - South Wall (G.S3.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "57.092909999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "65.153065", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.S4.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.353899999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.203849999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.S5.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "102.08016", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "116.49144", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WSW20.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "69.101928", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "78.86407999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.WSW20.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "36.00644922", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "41.0931442", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - WSW Wall (G.WSW20.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.28807916", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.97964760000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - SW Wall (G.WSW20.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "18.83280798", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "21.491550569999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - SSW Wall (G.WSW20.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.882488", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.265892", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.WSW20.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "17.31992766", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.765087690000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW21.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "99.03868317000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "113.0300537", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.C22.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "48.98737053", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "55.9079033", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW23.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "59.21300763", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "67.5781343", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.WNW24.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "120.87354762000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "137.9495682", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.C29.I110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - North Wall (G.C29.I111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - East Wall (G.C29.I113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.C32.I137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.C32.I144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - NW Wall (G.C36.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.802000000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.149499999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - NNW Wall (G.C36.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.85374736", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.208551160000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - NNW Wall (G.C36.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.321822960000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.31926226", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 329": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "76.59410132", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "87.40485566999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 330": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.148381560000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.40362761000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 331": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "15.534680680000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "17.72729883", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 332": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "278.39956472", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "317.69383482", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 333": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "15.87781496", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "18.11886426", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 334": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.0976992", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.4869352", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - East Wall (G.C36.I169)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.C36.I170)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.C36.I171)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - North Wall (G.C36.I187)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.W38.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "97.95036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "111.77541000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.W38.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.79768772", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.14457907", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - WNW Wall (G.W38.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.8297218", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.181134549999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - NW Wall (G.W38.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.50814892", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.81417377", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - East Wall (G.W38.I199)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.C41.I211)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - North Wall (G.C41.I212)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - North Wall (G.NW42.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1246.1508", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1245.464361", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "The vertical fenestration is not distributed across baseline opaque surfaces in the same proportion as in the proposed design. Verify if envelope is existing or altered and can be excluded from this check." + }, + "4 - South Wall (G.NW42.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1113.893568", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1113.27998256", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.S1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.912710000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.9942", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.S3.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.912710000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.9942", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.S8.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "53.46672", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "61.0144", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.S8.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.C30.I134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - West Wall (G.C30.I136)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.S3.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.912710000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.9942", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C29.I134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C48.I233)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.C51.I243)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.S4.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.912710000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.9942", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - West Wall (G.S4.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - West Wall (G.S4.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.C14.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.144608000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.544828", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.N22.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.274303999999994", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "61.933536000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.WSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - WNW Wall (G.WSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.WSW1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.S3.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.S3.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.S4.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.S4.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.S4.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.S4.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - WNW Wall (G.NW7.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.NW7.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.NW7.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.NW7.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.NW7.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - WNW Wall (G.ENE11.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - WNW Wall (G.ENE11.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - NW Wall (G.ENE11.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - NW Wall (G.ENE11.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - NNW Wall (G.ENE11.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - NNW Wall (G.ENE11.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - East Wall (G.ENE11.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.ENE11.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - North Wall (G.ENE11.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.ENE11.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - South Wall (G.S9.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "1 - South Wall (G.S2.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - South Wall (G.S6.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "142.15971", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "162.229265", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.S6.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - East Wall (G.S6.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.S2.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.44425999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "114.62459000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.S2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "244.73063999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "279.28076", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.S3.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.32779000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "71.12698500000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - South Wall (G.S4.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.04579", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "108.463985", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - WNW Wall (G.WNW7.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "257.63536638", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "294.0319718", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "32.65012", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "37.258469999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C17.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "19.297453", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "22.021161749999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C17.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - North Wall (G.C32.I103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C32.I104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C40.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - North Wall (G.C47.I164)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C47.I165)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I209)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I210)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I211)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - East Wall (G.C50.I212)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - West Wall (G.C50.I246)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - North Wall (G.C50.I247)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.S6.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "44.66007", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.965005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - South Wall (G.C34.I150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - North Wall (G.C34.I153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "158.94726000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "181.3852", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "456.6464700000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "521.1093999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "137.33624999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "156.73262", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.S8.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "270.26353728000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "308.44732248", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.S8.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - West Wall (G.S8.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.S8.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - East Wall (G.S8.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.923491250000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "33.008434140000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "23.98040508", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.365621599999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.64118488", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.68305117", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.76975808", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.82976872", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.61601736", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.654331989999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.793831360000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.85723924", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.77358792", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.834139029999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.746779039999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.80354686", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "29.243563999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "33.3704385", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "856.29805912", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "977.13950733", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - NNW Wall (G.NNW9.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.56708136", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.493832989999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - NW Wall (G.NNW9.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.404039600000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.30778265", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.2385414400000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.978661040000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - WNW Wall (G.NNW9.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "146.28640752", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "166.95426682000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - South Wall (G.NNW9.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - East Wall (G.NNW9.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.NNW9.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.S2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "64.07289", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "73.1178", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.C6.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.559664", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.590025999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.80203816", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.866604190000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NNW13.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.793831360000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.85723924", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NNW13.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.728176960000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.78231964", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NNW13.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.756080079999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.81416047", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.875763999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.8096135", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.60511944", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "106.81474671", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.NNW13.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NNE Wall (G.NNW13.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.N14.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.46640936", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "228.75638499000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.C33.I141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.C33.I142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.N38.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "120.03812800000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "136.978002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.SW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "95.01966000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "108.43320000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.SW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "88.97389776000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "101.54444366", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.S4.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "544.54692", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "621.4184", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.S4.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "46.01294", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "52.50883000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.E5.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "113.88374999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "129.96786", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.E5.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.C16.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.89375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.279700000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - West Wall (G.C16.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.C16.I84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - West Wall (G.C23.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.C23.I107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.C29.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.N39.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "328.21728800000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "374.535567", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.NW42.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.11404799999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "131.35903199999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NNW Wall (G.NW42.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.298445439999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.187286960000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - NW Wall (G.NW42.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.404039600000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.30778265", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW42.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.276208960000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.0216503600000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.NW42.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "70.56045216000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "80.52948156000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - WNW Wall (G.WNW43.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "258.11438400000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "294.581694", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - North Wall (G.C44.I174)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I191)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.C44.I196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.S2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "57.970710000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "66.15419999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.S4.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "494.42187000000007", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "564.2174000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.SE5.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "46.01294", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "52.50883000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.SE5.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "50.12505", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "57.20100000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.WNW8.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "258.11989632", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "294.58798512000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.E9.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "113.7901", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "129.85445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.E9.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C11.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW14.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "19.85662616", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "22.658808690000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.70848064", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.75984376", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.822828719999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.89032872999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW14.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.55802264", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.58815300999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW14.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.77139944", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.83164171000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW14.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.649391679999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.69241612", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW14.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "11.402527919999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.011661529999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.NW14.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW14.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.N17.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.168884959999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.002979139999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.N17.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "109.58813599999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.053299", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.N20.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "136.287592", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "155.520603", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.N22.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "47.87737696", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.63386964", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.N23.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.894456", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.487929", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.N25.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "49.021952", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "55.939968", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.N26.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "328.21728800000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "374.535567", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.NW27.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.059336", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "131.296599", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - NNW Wall (G.NW27.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.298445439999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.187286960000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - NW Wall (G.NW27.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.4341311999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.342120799999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW27.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.45306256", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.223490460000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.NW27.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "70.35833376000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "80.29880716", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C28.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.993125000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.393110000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.C28.I107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.C30.I138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - West Wall (G.C31.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C38.I160)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - West Wall (G.C44.I187)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.C44.I188)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I202)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.C44.I205)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C50.I238)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - West Wall (G.C50.I239)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.SSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "101.12184", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "115.3968", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - WNW Wall (G.SSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "89.19209376", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "101.79346716", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.S5.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "494.85774000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "564.7148", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.ESE6.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "49.68918000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "56.7036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - East Wall (G.ESE6.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "63.00375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "71.90194000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - East Wall (G.E10.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.51375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "51.94178", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - East Wall (G.E11.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "38.16192", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "43.549440000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - East Wall (G.E12.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.110625000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.36323", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.E12.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.WNW15.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "70.328016", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "80.26420600000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW16.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.0566004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "131.29347735", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NW16.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.315406160000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.20664119", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW16.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.390908719999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.29279873", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW16.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.4526032", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.222966200000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW16.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "70.37487072", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "80.31768052000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.N17.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "328.21728800000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "374.535567", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.N18.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "87.81276", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.204965", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "The vertical fenestration is not distributed across baseline opaque surfaces in the same proportion as in the proposed design. Verify if envelope is existing or altered and can be excluded from this check." + }, + "8 - North Wall (G.N19.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "72.71224799999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "82.973457", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.N20.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "64.94314399999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "74.10797099999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.N23.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "19.203912", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "21.913982999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.N23.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "134.67030527999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "153.67508352", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NNW24.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "10.176432", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "11.612538", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NNW24.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.76045704", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.81915511", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NNW Wall (G.NNW24.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.65650424", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.70053241", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.NNW24.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.61385728", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "9.82945152", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.NW26.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "19.805744", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "22.600746", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.73911936", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.79480623999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.845807760000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "32.91655059", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - NW Wall (G.NW26.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "18.354781759999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "20.94502284", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - East Wall (G.NW26.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.NW26.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - East Wall (G.C30.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.C30.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - West Wall (G.C30.I100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.C58.I217)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - West Wall (G.C58.I229)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I277)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - West Wall (G.C63.I278)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.C63.I279)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.WSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "102.28416000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "116.7232", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - WNW Wall (G.WSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "245.85911856", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "280.5949614600001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.S2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.228300000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "44.766", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - East Wall (G.S2.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - North Wall (G.S2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - South Wall (G.NW13.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C39.I162)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C53.I246)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - North Wall (G.C53.I247)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "7 - East Wall (G.C53.I248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - West Wall (G.C8.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - South Wall (G.NW29.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "8 - West Wall (G.C31.I102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - North Wall (G.C14.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "3 - North Wall (G.C27.I94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - West Wall (G.C28.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "4 - North Wall (G.C39.I203)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - North Wall (G.C3.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - East Wall (G.C3.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "5 - West Wall (G.E7.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - South Wall (G.NW11.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - East Wall (G.NW11.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - West Wall (G.C26.I124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "6 - West Wall (G.C26.I125)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "2 - North Wall (G.C9.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + }, + "P - West Wall (G.S10.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "17742.827064350004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "19913.27645647002", + "unit": "ft2" + } + ], + "messages": "" + } + }, + "5-17": { + "G - Lockers zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Restroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Lounge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Laundry/Washing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Office 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Office 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Lounge 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Restroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Office 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Workshop zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Storage 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Laundry/Washing 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Supply Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Storage 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Supply Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Supply Rm 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Restroom 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Mail Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Elev Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Lounge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Restroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Storage 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Storage 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Storage 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Office 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elec/Mech 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elec/Mech 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Storage 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elec/Mech 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Office 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Corridor 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elec/Mech 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Office 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Elev Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Vestibule zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Dining zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Kitchen 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Lounge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Restroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Stairs 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Restroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Elev Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Office 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Office 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Office 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Office 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Office 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Lounge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Conference/Multipurpose zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Elev Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Elec/Mech 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Office 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Conference/Multipurpose 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Lockers zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Lounge 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Lounge 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Classroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Conference/Multipurpose zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Classroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Lounge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Conference/Multipurpose 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Exam Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Storage 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Office 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Office 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Lounge 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Elec/Mech 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Storage 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Corridor 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Office 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Classroom 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Storage 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Elev Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Bridge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Elev Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Storage 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Storage 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Elev Lobby 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Laundry zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Storage 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Electrical 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Storage 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Storage 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Electrical 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Electrical 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Storage 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Laundry zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Electrical 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Storage 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Storage 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Storage 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Storage 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Electrical 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Lounge 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Electrical 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Generator Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Mechanical 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Mechanical 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Mechanical 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Mechanical 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Kitchen zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Kitchen zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Patient Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Supply Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Operating Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Operating Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Patient Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Operating Rm 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Operating Rm 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Restroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Nurses Station zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Storage 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Restroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Storage 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Corridor 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Storage 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Exam Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Corridor 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Restroom 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Restroom 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Exam Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Restroom 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Corridor 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Corridor 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Restroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Office 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Nurses Station zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Supply Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Storage 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Mail Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Office 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Restroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Storage 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Core and Shell 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Core and Shell 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Lounge zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Seating zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Elev Lobby zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Open Office zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Lounge 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Supply Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Nurses Station zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Exam Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Supply Rm 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Exam Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Lounge 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Nurses Station 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Conference/Multipurpose zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Patient Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Patient Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Patient Rm 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Restroom zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Restroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Supply Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Office 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Restroom 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Laundry/Washing zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Restroom 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Patient Rm 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Patient Rm 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Patient Rm 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Corridor 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Lounge 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Patient Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Patient Rm 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Restroom 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Patient Rm 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Patient Rm 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Restroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Restroom 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Lounge 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Conference 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Restroom 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Lounge 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Lounge 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Restroom 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Corridor 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Patient Rm 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Patient Rm 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Conference 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Med Supply 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Washing 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Med Supply 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Restroom 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Corridor 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Office 9 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Med Supply 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Med Supply 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Imaging 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Corridor 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Patient Rm 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Patient Rm 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Lounge 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Restroom 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Patient Rm 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Conference 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Patient Rm 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Patient Rm 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Patient Rm 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Patient Rm 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Exercise zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Lounge 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Conference 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Lounge 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Restroom 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Lounge 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Restroom 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Corridor 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Lab 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Med Supply 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Med Supply 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Conference 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Med Supply 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Exam 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Med Supply 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Med Supply 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Restroom 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Corridor 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Corridor 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Med Supply 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Exam 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Restroom 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 9 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Patient Rm 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Lounge 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Office 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Void 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 7 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-18": { + "3 - South Win (G.S2.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S2.E2.W1) missing:dynamic_glazing_type" + } + }, + "3 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S2.E3.W1) missing:dynamic_glazing_type" + } + }, + "3 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S3.E4.W1) missing:dynamic_glazing_type" + } + }, + "3 - WNW Win (G.WNW6.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW6.E6.W1) missing:dynamic_glazing_type" + } + }, + "3 - WNW Win (G.WNW7.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW7.E7.W1) missing:dynamic_glazing_type" + } + }, + "3 - WNW Win (G.WSW8.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WSW8.E8.W1) missing:dynamic_glazing_type" + } + }, + "3 - West Win (G.WSW8.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.WSW8.E9.W1) missing:dynamic_glazing_type" + } + }, + "3 - WSW Win (G.WSW8.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WSW Win (G.WSW8.E10.W1) missing:dynamic_glazing_type" + } + }, + "3 - SW Win (G.WSW8.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - SW Win (G.WSW8.E11.W1) missing:dynamic_glazing_type" + } + }, + "3 - SSW Win (G.WSW8.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - SSW Win (G.WSW8.E12.W1) missing:dynamic_glazing_type" + } + }, + "3 - South Win (G.WSW8.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.WSW8.E13.W1) missing:dynamic_glazing_type" + } + }, + "3 - West Win (G.C15.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.C15.E14.W1) missing:dynamic_glazing_type" + } + }, + "3 - WNW Win (G.WNW16.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW16.E15.W1) missing:dynamic_glazing_type" + } + }, + "3 - NW Win (G.WNW16.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NW Win (G.WNW16.E16.W1) missing:dynamic_glazing_type" + } + }, + "3 - West Win (G.WNW16.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.WNW16.E17.W1) missing:dynamic_glazing_type" + } + }, + "3 - West Win (G.C17.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.C17.E18.W1) missing:dynamic_glazing_type" + } + }, + "3 - West Win (G.C17.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.C17.E19.W1) missing:dynamic_glazing_type" + } + }, + "3 - NW Win (G.C48.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NW Win (G.C48.E20.W1) missing:dynamic_glazing_type" + } + }, + "3 - NNW Win (G.C48.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NNW Win (G.C48.E21.W1) missing:dynamic_glazing_type" + } + }, + "3 - NNW Win (G.C48.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NNW Win (G.C48.E22.W1) missing:dynamic_glazing_type" + } + }, + "3 - WNW Win (G.WNW49.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW49.E23.W1) missing:dynamic_glazing_type" + } + }, + "5 - South Win (G.S8.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.S8.E3.W1) missing:dynamic_glazing_type" + } + }, + "5 - South Win (G.S8.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.S8.E4.W1) missing:dynamic_glazing_type" + } + }, + "5 - East Win (G.S8.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - East Win (G.S8.E5.W1) missing:dynamic_glazing_type" + } + }, + "5 - WNW Win (G.S8.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.S8.E6.W1) missing:dynamic_glazing_type" + } + }, + "5 - East Win (G.NNW9.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - East Win (G.NNW9.E7.W1) missing:dynamic_glazing_type" + } + }, + "5 - South Win (G.NNW9.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.NNW9.E8.W1) missing:dynamic_glazing_type" + } + }, + "5 - WNW Win (G.NNW9.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E9.W1) missing:dynamic_glazing_type" + } + }, + "5 - NW Win (G.NNW9.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E10.W1) missing:dynamic_glazing_type" + } + }, + "5 - NW Win (G.NNW9.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E11.W1) missing:dynamic_glazing_type" + } + }, + "5 - NW Win (G.NNW9.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E12.W1) missing:dynamic_glazing_type" + } + }, + "5 - NNW Win (G.NNW9.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E13.W1) missing:dynamic_glazing_type" + } + }, + "5 - NNW Win (G.NNW9.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E14.W1) missing:dynamic_glazing_type" + } + }, + "5 - North Win (G.NNW9.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - North Win (G.NNW9.E15.W1) missing:dynamic_glazing_type" + } + }, + "5 - North Win (G.NNW9.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - North Win (G.NNW9.E16.W1) missing:dynamic_glazing_type" + } + }, + "5 - NNW Win (G.NNW9.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E17.W1) missing:dynamic_glazing_type" + } + }, + "5 - NW Win (G.NNW9.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E18.W1) missing:dynamic_glazing_type" + } + }, + "5 - WNW Win (G.NNW9.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E19.W1) missing:dynamic_glazing_type" + } + }, + "5 - WNW Win (G.NNW9.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E20.W1) missing:dynamic_glazing_type" + } + }, + "6 - South Win (G.SW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.SW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "6 - WNW Win (G.SW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.SW1.E2.W1) missing:dynamic_glazing_type" + } + }, + "6 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S2.E3.W1) missing:dynamic_glazing_type" + } + }, + "6 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S4.E5.W1) missing:dynamic_glazing_type" + } + }, + "6 - East Win (G.S4.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.S4.E6.W1) missing:dynamic_glazing_type" + } + }, + "6 - East Win (G.E5.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.E5.E7.W1) missing:dynamic_glazing_type" + } + }, + "6 - South Win (G.S8.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S8.E9.W1) missing:dynamic_glazing_type" + } + }, + "6 - NW Win (G.NNW13.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NNW13.E15.W1) missing:dynamic_glazing_type" + } + }, + "6 - NW Win (G.NNW13.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NNW13.E16.W1) missing:dynamic_glazing_type" + } + }, + "6 - NW Win (G.NNW13.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NNW13.E17.W1) missing:dynamic_glazing_type" + } + }, + "6 - NNW Win (G.NNW13.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NNW Win (G.NNW13.E18.W1) missing:dynamic_glazing_type" + } + }, + "6 - NNW Win (G.NNW13.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NNW Win (G.NNW13.E19.W1) missing:dynamic_glazing_type" + } + }, + "6 - North Win (G.NNW13.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NNW13.E20.W1) missing:dynamic_glazing_type" + } + }, + "6 - North Win (G.NNW13.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NNW13.E21.W1) missing:dynamic_glazing_type" + } + }, + "6 - North Win (G.N14.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.N14.E22.W1) missing:dynamic_glazing_type" + } + }, + "6 - East Win (G.C16.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.C16.E23.W1) missing:dynamic_glazing_type" + } + }, + "6 - North Win (G.N38.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.N38.E24.W1) missing:dynamic_glazing_type" + } + }, + "6 - North Win (G.N39.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.N39.E25.W1) missing:dynamic_glazing_type" + } + }, + "6 - North Win (G.NW42.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NW42.E26.W1) missing:dynamic_glazing_type" + } + }, + "6 - NNW Win (G.NW42.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NNW Win (G.NW42.E27.W1) missing:dynamic_glazing_type" + } + }, + "6 - NW Win (G.NW42.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NW42.E28.W1) missing:dynamic_glazing_type" + } + }, + "6 - WNW Win (G.NW42.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW42.E29.W1) missing:dynamic_glazing_type" + } + }, + "6 - WNW Win (G.NW42.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW42.E30.W1) missing:dynamic_glazing_type" + } + }, + "6 - WNW Win (G.WNW43.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.WNW43.E31.W1) missing:dynamic_glazing_type" + } + }, + "7 - South Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.SSW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "7 - WNW Win (G.SSW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.SSW1.E2.W1) missing:dynamic_glazing_type" + } + }, + "7 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.S2.E3.W1) missing:dynamic_glazing_type" + } + }, + "7 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.S4.E5.W1) missing:dynamic_glazing_type" + } + }, + "7 - East Win (G.SE5.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.SE5.E6.W1) missing:dynamic_glazing_type" + } + }, + "7 - South Win (G.SE5.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.SE5.E7.W1) missing:dynamic_glazing_type" + } + }, + "7 - WNW Win (G.WNW8.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.WNW8.E8.W1) missing:dynamic_glazing_type" + } + }, + "7 - East Win (G.E9.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.E9.E9.W1) missing:dynamic_glazing_type" + } + }, + "7 - WNW Win (G.NW14.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW14.E16.W1) missing:dynamic_glazing_type" + } + }, + "7 - NW Win (G.NW14.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW14.E17.W1) missing:dynamic_glazing_type" + } + }, + "7 - NW Win (G.NW14.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW14.E18.W1) missing:dynamic_glazing_type" + } + }, + "7 - NW Win (G.NW14.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW14.E19.W1) missing:dynamic_glazing_type" + } + }, + "7 - NNW Win (G.NW14.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NNW Win (G.NW14.E20.W1) missing:dynamic_glazing_type" + } + }, + "7 - NNW Win (G.NW14.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NNW Win (G.NW14.E21.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.NW14.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.NW14.E22.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.N17.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N17.E23.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.N17.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N17.E24.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.N20.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N20.E25.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.N22.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N22.E26.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.N23.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N23.E27.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.N25.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N25.E28.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.N26.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N26.E29.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.NW27.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.NW27.E30.W1) missing:dynamic_glazing_type" + } + }, + "7 - NNW Win (G.NW27.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NNW Win (G.NW27.E31.W1) missing:dynamic_glazing_type" + } + }, + "7 - NW Win (G.NW27.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW27.E32.W1) missing:dynamic_glazing_type" + } + }, + "7 - WNW Win (G.NW27.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW27.E33.W1) missing:dynamic_glazing_type" + } + }, + "7 - WNW Win (G.NW27.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW27.E34.W1) missing:dynamic_glazing_type" + } + }, + "7 - East Win (G.C28.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.C28.E35.W1) missing:dynamic_glazing_type" + } + }, + "8 - South Win (G.WSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.WSW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.WSW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.WSW1.E2.W1) missing:dynamic_glazing_type" + } + }, + "8 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S2.E3.W1) missing:dynamic_glazing_type" + } + }, + "8 - South Win (G.S5.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S5.E6.W1) missing:dynamic_glazing_type" + } + }, + "8 - South Win (G.ESE6.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.ESE6.E7.W1) missing:dynamic_glazing_type" + } + }, + "8 - East Win (G.ESE6.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.ESE6.E8.W1) missing:dynamic_glazing_type" + } + }, + "8 - East Win (G.E10.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E10.E9.W1) missing:dynamic_glazing_type" + } + }, + "8 - East Win (G.E11.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E11.E10.W1) missing:dynamic_glazing_type" + } + }, + "8 - East Win (G.E12.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E12.E11.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.C14.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.C14.E13.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.WNW15.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.WNW15.E14.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.NW16.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.NW16.E15.W1) missing:dynamic_glazing_type" + } + }, + "8 - NNW Win (G.NW16.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NNW Win (G.NW16.E16.W1) missing:dynamic_glazing_type" + } + }, + "8 - NW Win (G.NW16.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW16.E17.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.NW16.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW16.E18.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.NW16.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW16.E19.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.N17.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N17.E20.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.N18.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N18.E21.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.N19.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N19.E22.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.N20.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N20.E23.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.N22.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N22.E24.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.N23.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N23.E25.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.N23.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N23.E26.W1) missing:dynamic_glazing_type" + } + }, + "8 - NW Win (G.NNW24.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NNW24.E27.W1) missing:dynamic_glazing_type" + } + }, + "8 - NNW Win (G.NNW24.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NNW Win (G.NNW24.E28.W1) missing:dynamic_glazing_type" + } + }, + "8 - NNW Win (G.NNW24.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NNW Win (G.NNW24.E29.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.NNW24.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.NNW24.E30.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.NW26.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW26.E31.W1) missing:dynamic_glazing_type" + } + }, + "8 - NW Win (G.NW26.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW26.E32.W1) missing:dynamic_glazing_type" + } + }, + "8 - NW Win (G.NW26.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW26.E33.W1) missing:dynamic_glazing_type" + } + }, + "8 - NW Win (G.NW26.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW26.E34.W1) missing:dynamic_glazing_type" + } + }, + "3 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S4.E5.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.S6.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S6.E6.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.S2.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S2.E2.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.S3.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S3.E3.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.S4.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S4.E4.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.S5.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S5.E5.W1) missing:dynamic_glazing_type" + } + }, + "4 - WNW Win (G.WSW20.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WSW20.E7.W1) missing:dynamic_glazing_type" + } + }, + "4 - West Win (G.WSW20.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - West Win (G.WSW20.E8.W1) missing:dynamic_glazing_type" + } + }, + "4 - WSW Win (G.WSW20.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WSW Win (G.WSW20.E9.W1) missing:dynamic_glazing_type" + } + }, + "4 - SW Win (G.WSW20.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - SW Win (G.WSW20.E10.W1) missing:dynamic_glazing_type" + } + }, + "4 - SSW Win (G.WSW20.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - SSW Win (G.WSW20.E11.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.WSW20.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.WSW20.E12.W1) missing:dynamic_glazing_type" + } + }, + "4 - WNW Win (G.WNW21.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WNW21.E13.W1) missing:dynamic_glazing_type" + } + }, + "4 - WNW Win (G.C22.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.C22.E14.W1) missing:dynamic_glazing_type" + } + }, + "4 - WNW Win (G.WNW23.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WNW23.E15.W1) missing:dynamic_glazing_type" + } + }, + "4 - WNW Win (G.WNW24.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WNW24.E16.W1) missing:dynamic_glazing_type" + } + }, + "4 - NW Win (G.C36.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NW Win (G.C36.E17.W1) missing:dynamic_glazing_type" + } + }, + "4 - NNW Win (G.C36.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NNW Win (G.C36.E18.W1) missing:dynamic_glazing_type" + } + }, + "4 - NNW Win (G.C36.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NNW Win (G.C36.E19.W1) missing:dynamic_glazing_type" + } + }, + "Window 214": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 214 missing:dynamic_glazing_type" + } + }, + "Window 218": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 218 missing:dynamic_glazing_type" + } + }, + "Window 216": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 216 missing:dynamic_glazing_type" + } + }, + "Window 220": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 220 missing:dynamic_glazing_type" + } + }, + "Window 224": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 224 missing:dynamic_glazing_type" + } + }, + "Window 222": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 222 missing:dynamic_glazing_type" + } + }, + "4 - West Win (G.W38.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - West Win (G.W38.E20.W1) missing:dynamic_glazing_type" + } + }, + "4 - West Win (G.W38.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - West Win (G.W38.E21.W1) missing:dynamic_glazing_type" + } + }, + "4 - WNW Win (G.W38.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.W38.E22.W1) missing:dynamic_glazing_type" + } + }, + "4 - NW Win (G.W38.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NW Win (G.W38.E23.W1) missing:dynamic_glazing_type" + } + }, + "4 - North Win (G.NW42.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - North Win (G.NW42.E24.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.NW42.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.NW42.E26.W1) missing:dynamic_glazing_type" + } + }, + "2 - South Win (G.S12.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S12.E17.W1) missing:dynamic_glazing_type" + } + }, + "2 - West Win (G.NNW24.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.NNW24.E19.W1) missing:dynamic_glazing_type" + } + }, + "2 - WNW Win (G.NNW24.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E20.W1) missing:dynamic_glazing_type" + } + }, + "2 - NW Win (G.NNW24.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.NNW24.E21.W1) missing:dynamic_glazing_type" + } + }, + "2 - NW Win (G.NNW24.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.NNW24.E22.W1) missing:dynamic_glazing_type" + } + }, + "2 - NNW Win (G.NNW24.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E23.W1) missing:dynamic_glazing_type" + } + }, + "2 - NNW Win (G.NNW24.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E24.W1) missing:dynamic_glazing_type" + } + }, + "2 - North Win (G.NNW24.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - North Win (G.NNW24.E25.W1) missing:dynamic_glazing_type" + } + }, + "Window 203": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 203 missing:dynamic_glazing_type" + } + }, + "2 - NNE Win (G.NNW24.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNE Win (G.NNW24.E26.W1) missing:dynamic_glazing_type" + } + }, + "Window 205": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 205 missing:dynamic_glazing_type" + } + }, + "2 - NNE Win (G.NNW24.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNE Win (G.NNW24.E27.W1) missing:dynamic_glazing_type" + } + }, + "Window 207": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 207 missing:dynamic_glazing_type" + } + }, + "2 - NE Win (G.NNW24.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NE Win (G.NNW24.E28.W1) missing:dynamic_glazing_type" + } + }, + "Window 209": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 209 missing:dynamic_glazing_type" + } + }, + "2 - NE Win (G.NNW24.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NE Win (G.NNW24.E29.W1) missing:dynamic_glazing_type" + } + }, + "Window 211": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 211 missing:dynamic_glazing_type" + } + }, + "2 - NE Win (G.NNW24.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NE Win (G.NNW24.E30.W1) missing:dynamic_glazing_type" + } + }, + "Window 213": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 213 missing:dynamic_glazing_type" + } + }, + "2 - North Win (G.NNW24.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - North Win (G.NNW24.E31.W1) missing:dynamic_glazing_type" + } + }, + "Window 215": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 215 missing:dynamic_glazing_type" + } + }, + "2 - NNW Win (G.NNW24.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E32.W1) missing:dynamic_glazing_type" + } + }, + "Window 217": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 217 missing:dynamic_glazing_type" + } + }, + "2 - NW Win (G.NNW24.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.NNW24.E33.W1) missing:dynamic_glazing_type" + } + }, + "Window 219": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 219 missing:dynamic_glazing_type" + } + }, + "2 - WNW Win (G.NNW24.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E34.W1) missing:dynamic_glazing_type" + } + }, + "Window 221": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 221 missing:dynamic_glazing_type" + } + }, + "2 - WNW Win (G.NNW24.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E35.W1) missing:dynamic_glazing_type" + } + }, + "2 - WNW Win (G.NNW24.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E36.W1) missing:dynamic_glazing_type" + } + }, + "2 - West Win (G.NNW24.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.NNW24.E37.W1) missing:dynamic_glazing_type" + } + }, + "Window 223": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 223 missing:dynamic_glazing_type" + } + }, + "2 - South Win (G.S7.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S7.E16.W1) missing:dynamic_glazing_type" + } + }, + "2 - South Win (G.S6.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S6.E15.W1) missing:dynamic_glazing_type" + } + }, + "2 - WNW Win (G.W2.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.W2.E8.W1) missing:dynamic_glazing_type" + } + }, + "2 - West Win (G.W2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.W2.E9.W1) missing:dynamic_glazing_type" + } + }, + "2 - WSW Win (G.W2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WSW Win (G.W2.E10.W1) missing:dynamic_glazing_type" + } + }, + "2 - SW Win (G.W2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - SW Win (G.W2.E11.W1) missing:dynamic_glazing_type" + } + }, + "2 - SSW Win (G.W2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - SSW Win (G.W2.E12.W1) missing:dynamic_glazing_type" + } + }, + "2 - South Win (G.W2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.W2.E13.W1) missing:dynamic_glazing_type" + } + }, + "7 - East Win (G.E10.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.E10.E10.W1) missing:dynamic_glazing_type" + } + }, + "7 - North Win (G.NW13.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.NW13.E11.W1) missing:dynamic_glazing_type" + } + }, + "7 - West Win (G.NW13.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - West Win (G.NW13.E12.W1) missing:dynamic_glazing_type" + } + }, + "7 - West Win (G.NW13.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - West Win (G.NW13.E13.W1) missing:dynamic_glazing_type" + } + }, + "7 - WNW Win (G.NW13.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW13.E14.W1) missing:dynamic_glazing_type" + } + }, + "7 - WNW Win (G.NW13.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW13.E15.W1) missing:dynamic_glazing_type" + } + }, + "8 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S3.E4.W1) missing:dynamic_glazing_type" + } + }, + "8 - East Win (G.E13.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E13.E12.W1) missing:dynamic_glazing_type" + } + }, + "8 - West Win (G.NW29.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - West Win (G.NW29.E35.W1) missing:dynamic_glazing_type" + } + }, + "8 - West Win (G.NW29.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - West Win (G.NW29.E36.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.NW29.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW29.E37.W1) missing:dynamic_glazing_type" + } + }, + "8 - WNW Win (G.NW29.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW29.E38.W1) missing:dynamic_glazing_type" + } + }, + "8 - North Win (G.NW29.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.NW29.E39.W1) missing:dynamic_glazing_type" + } + }, + "5 - East Win (G.E7.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - East Win (G.E7.E2.W1) missing:dynamic_glazing_type" + } + }, + "5 - West Win (G.W10.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - West Win (G.W10.E21.W1) missing:dynamic_glazing_type" + } + }, + "5 - West Win (G.W10.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - West Win (G.W10.E22.W1) missing:dynamic_glazing_type" + } + }, + "5 - WNW Win (G.W10.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.W10.E23.W1) missing:dynamic_glazing_type" + } + }, + "6 - East Win (G.E7.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.E7.E8.W1) missing:dynamic_glazing_type" + } + }, + "6 - North Win (G.NW11.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NW11.E10.W1) missing:dynamic_glazing_type" + } + }, + "6 - West Win (G.NW11.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - West Win (G.NW11.E11.W1) missing:dynamic_glazing_type" + } + }, + "6 - West Win (G.NW11.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - West Win (G.NW11.E12.W1) missing:dynamic_glazing_type" + } + }, + "6 - WNW Win (G.NW11.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW11.E13.W1) missing:dynamic_glazing_type" + } + }, + "6 - WNW Win (G.NW11.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW11.E14.W1) missing:dynamic_glazing_type" + } + }, + "7 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.S3.E4.W1) missing:dynamic_glazing_type" + } + }, + "8 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S4.E5.W1) missing:dynamic_glazing_type" + } + }, + "4 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S1.E1.W1) missing:dynamic_glazing_type" + } + }, + "3 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S1.E1.W1) missing:dynamic_glazing_type" + } + }, + "5 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.S1.E1.W1) missing:dynamic_glazing_type" + } + }, + "6 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S3.E4.W1) missing:dynamic_glazing_type" + } + }, + "2 - North Win (G.WNW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - North Win (G.WNW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "2 - NNW Win (G.WNW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.WNW1.E2.W1) missing:dynamic_glazing_type" + } + }, + "2 - NW Win (G.WNW1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.WNW1.E3.W1) missing:dynamic_glazing_type" + } + }, + "2 - NW Win (G.WNW1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.WNW1.E4.W1) missing:dynamic_glazing_type" + } + }, + "2 - WNW Win (G.WNW1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.WNW1.E5.W1) missing:dynamic_glazing_type" + } + }, + "2 - West Win (G.WNW1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.WNW1.E6.W1) missing:dynamic_glazing_type" + } + }, + "2 - WSW Win (G.WNW1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WSW Win (G.WNW1.E7.W1) missing:dynamic_glazing_type" + } + }, + "2 - South Win (G.S5.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S5.E14.W1) missing:dynamic_glazing_type" + } + }, + "2 - South Win (G.C13.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.C13.E18.W1) missing:dynamic_glazing_type" + } + } + }, + "5-19": { + "2 - North Win (G.WNW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Win (G.WNW1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Win (G.WNW1.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Win (G.WNW1.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Win (G.WNW1.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Win (G.WNW1.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WSW Win (G.WNW1.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Win (G.W2.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Win (G.W2.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WSW Win (G.W2.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SW Win (G.W2.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - SSW Win (G.W2.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Win (G.W2.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Win (G.S5.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Win (G.S7.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Win (G.S12.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Win (G.C13.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Win (G.NNW24.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Win (G.NNW24.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 203": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNE Win (G.NNW24.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 205": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNE Win (G.NNW24.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 207": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 209": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 211": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 213": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - North Win (G.NNW24.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 215": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 217": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 219": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 221": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E36.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - West Win (G.NNW24.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 223": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Win (G.S1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW6.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WSW8.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Win (G.WSW8.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WSW Win (G.WSW8.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - SW Win (G.WSW8.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - SSW Win (G.WSW8.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Win (G.WSW8.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Win (G.C15.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW16.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NW Win (G.WNW16.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Win (G.WNW16.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NW Win (G.C48.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNW Win (G.C48.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - NNW Win (G.C48.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW49.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.S1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.S2.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.S3.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.S4.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.S5.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WSW20.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Win (G.WSW20.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WSW Win (G.WSW20.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - SW Win (G.WSW20.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - SSW Win (G.WSW20.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.WSW20.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW21.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Win (G.C22.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW23.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW24.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NW Win (G.C36.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NNW Win (G.C36.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NNW Win (G.C36.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 214": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 218": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 216": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 220": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 224": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Window 222": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Win (G.W38.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - West Win (G.W38.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - WNW Win (G.W38.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - NW Win (G.W38.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - North Win (G.NW42.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.NW42.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Win (G.S1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Win (G.S3.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Win (G.S8.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Win (G.S3.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Win (G.S4.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Win (G.C14.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.N22.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2 - South Win (G.S6.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Win (G.S2.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Win (G.S2.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Win (G.S3.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - South Win (G.S4.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW7.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Win (G.C17.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "3 - West Win (G.C17.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "4 - South Win (G.S6.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Win (G.S8.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Win (G.S8.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Win (G.S8.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Win (G.S8.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - East Win (G.NNW9.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - South Win (G.NNW9.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Win (G.NNW9.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - North Win (G.NNW9.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Win (G.S2.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NNW13.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NNW13.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Win (G.NNW13.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Win (G.NNW13.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Win (G.N14.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Win (G.N38.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Win (G.SW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Win (G.SW1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - South Win (G.S4.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Win (G.S4.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Win (G.E5.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - East Win (G.C16.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Win (G.N39.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - North Win (G.NW42.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NW42.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - NW Win (G.NW42.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Win (G.NW42.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Win (G.NW42.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "6 - WNW Win (G.WNW43.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Win (G.S2.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Win (G.S4.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Win (G.SE5.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Win (G.SE5.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Win (G.WNW8.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Win (G.E9.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW14.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW14.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW14.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.NW14.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.N17.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.N17.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.N20.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.N22.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.N23.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.N25.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.N26.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - North Win (G.NW27.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW27.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW27.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW27.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW27.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - East Win (G.C28.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - South Win (G.SSW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "7 - WNW Win (G.SSW1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Win (G.S5.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Win (G.ESE6.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Win (G.ESE6.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Win (G.E10.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Win (G.E11.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - East Win (G.E12.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Win (G.WNW15.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.NW16.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NW16.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW16.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW16.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW16.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.N17.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.N18.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.N19.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.N20.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.N23.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.N23.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Win (G.NNW24.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NNW24.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NNW24.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - North Win (G.NNW24.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW26.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Win (G.WSW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - WNW Win (G.WSW1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "8 - South Win (G.S2.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-20": { + "2 - North Win (G.WNW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NNW Win (G.WNW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NW Win (G.WNW1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NW Win (G.WNW1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WNW Win (G.WNW1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - West Win (G.WNW1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WSW Win (G.WNW1.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WNW Win (G.W2.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - West Win (G.W2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WSW Win (G.W2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - SW Win (G.W2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - SSW Win (G.W2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - South Win (G.W2.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - South Win (G.S5.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - South Win (G.S7.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - South Win (G.S12.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - South Win (G.C13.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - West Win (G.NNW24.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - North Win (G.NNW24.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 203": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NNE Win (G.NNW24.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 205": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NNE Win (G.NNW24.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 207": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 209": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 211": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 213": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - North Win (G.NNW24.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 215": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 217": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 219": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 221": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - West Win (G.NNW24.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 223": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW6.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WSW8.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - West Win (G.WSW8.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - WSW Win (G.WSW8.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - SW Win (G.WSW8.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - SSW Win (G.WSW8.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - South Win (G.WSW8.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - West Win (G.C15.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW16.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - NW Win (G.WNW16.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - West Win (G.WNW16.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - NW Win (G.C48.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - NNW Win (G.C48.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - NNW Win (G.C48.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW49.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.S2.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.S3.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.S4.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.S5.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WSW20.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - West Win (G.WSW20.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - WSW Win (G.WSW20.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - SW Win (G.WSW20.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - SSW Win (G.WSW20.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.WSW20.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW21.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - WNW Win (G.C22.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW23.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW24.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - NW Win (G.C36.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - NNW Win (G.C36.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - NNW Win (G.C36.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 214": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 218": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 216": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 220": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 224": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "Window 222": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - West Win (G.W38.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - West Win (G.W38.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - WNW Win (G.W38.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - NW Win (G.W38.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - North Win (G.NW42.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.NW42.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - South Win (G.S3.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - South Win (G.S8.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - South Win (G.S3.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - WNW Win (G.C14.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.N22.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2 - South Win (G.S6.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - South Win (G.S2.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - South Win (G.S3.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW7.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - West Win (G.C17.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "3 - West Win (G.C17.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "4 - South Win (G.S6.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - South Win (G.S8.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - South Win (G.S8.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - East Win (G.S8.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - WNW Win (G.S8.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - East Win (G.NNW9.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - South Win (G.NNW9.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - North Win (G.NNW9.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - North Win (G.NNW9.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NNW13.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NNW13.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - North Win (G.NNW13.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - North Win (G.NNW13.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - North Win (G.N14.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - North Win (G.N38.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - South Win (G.SW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - WNW Win (G.SW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - East Win (G.S4.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - East Win (G.E5.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - East Win (G.C16.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - North Win (G.N39.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - North Win (G.NW42.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NW42.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - NW Win (G.NW42.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - WNW Win (G.NW42.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - WNW Win (G.NW42.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "6 - WNW Win (G.WNW43.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - East Win (G.SE5.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - South Win (G.SE5.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - WNW Win (G.WNW8.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - East Win (G.E9.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW14.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW14.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW14.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.NW14.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.N17.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.N17.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.N20.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.N22.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.N23.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.N25.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.N26.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - North Win (G.NW27.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW27.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW27.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW27.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW27.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - East Win (G.C28.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - South Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "7 - WNW Win (G.SSW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - South Win (G.S5.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - South Win (G.ESE6.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - East Win (G.ESE6.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - East Win (G.E10.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - East Win (G.E11.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - East Win (G.E12.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - WNW Win (G.WNW15.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.NW16.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NW16.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW16.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW16.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW16.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.N17.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.N18.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.N19.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.N20.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.N23.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.N23.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NW Win (G.NNW24.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NNW24.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NNW24.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - North Win (G.NNW24.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW26.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - South Win (G.WSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - WNW Win (G.WSW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "8 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.39" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + } + }, + "5-21": { + "7 - East Win (G.E10.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "9.738750000000001", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "11.114180000000003", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "7 - North Win (G.NW13.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "68.39", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "78.04125", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "7 - West Win (G.NW13.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "29.818040000000003", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "34.025985", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "7 - West Win (G.NW13.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.16628472", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.14113273", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "7 - WNW Win (G.NW13.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.817357519999998", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.88408543", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "7 - WNW Win (G.NW13.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "8.931734", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "10.19218725", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "8 - South Win (G.S3.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "17.580090000000002", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "20.061799999999998", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "8 - East Win (G.E13.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "10.732500000000002", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "12.248280000000001", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "8 - West Win (G.NW29.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "29.818040000000003", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "34.025985", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "8 - West Win (G.NW29.E36.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.16628472", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.14113273", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "8 - WNW Win (G.NW29.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.817357519999998", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.88408543", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "8 - WNW Win (G.NW29.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "8.931734", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "10.19218725", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "8 - North Win (G.NW29.E39.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "68.39", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "78.04125", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "5 - East Win (G.E7.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "19.775624999999998", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "22.56859", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "5 - West Win (G.W10.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "24.620399999999997", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "28.09485", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "5 - West Win (G.W10.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.70300944", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.75360046", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "5 - WNW Win (G.W10.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.72489424", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.77857366", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "6 - East Win (G.E7.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "9.639375", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "11.000770000000001", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "6 - North Win (G.NW11.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "68.36702096", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "78.01502813999998", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "6 - West Win (G.NW11.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145014", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "29.810927439999997", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "34.017868709999995", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "6 - West Win (G.NW11.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.163549119999995", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.13801108", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "6 - WNW Win (G.NW11.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.79930256", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.86348254", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + }, + "6 - WNW Win (G.NW11.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_u_factor_b", + "value": "0.4449589912403059", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor_p", + "value": "0.23450896009145017", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_shgc_b", + "value": "0.39" + }, + { + "variable": "subsurface_shgc_p", + "value": "0.22608695652173916" + }, + { + "variable": "subsurface_glazed_area_b", + "value": "28.6526744", + "unit": "ft2" + }, + { + "variable": "subsurface_glazed_area_p", + "value": "32.696162099999995", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "subsurface_opaque_area_p", + "value": "0.0", + "unit": "ft2" + } + ], + "messages": "Subsurface that is not regulated (Not part of building envelope) is not modeled with the same area, U-factor and SHGC in the baseline as in the propsoed design." + } + }, + "5-22": { + "2 - North Win (G.WNW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NNW Win (G.WNW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NW Win (G.WNW1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NW Win (G.WNW1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WNW Win (G.WNW1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - West Win (G.WNW1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WSW Win (G.WNW1.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WNW Win (G.W2.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - West Win (G.W2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WSW Win (G.W2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - SW Win (G.W2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - SSW Win (G.W2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - South Win (G.W2.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - South Win (G.S5.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - South Win (G.S7.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - South Win (G.S12.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - South Win (G.C13.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - West Win (G.NNW24.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - North Win (G.NNW24.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 203": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NNE Win (G.NNW24.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 205": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NNE Win (G.NNW24.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 207": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 209": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 211": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NE Win (G.NNW24.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 213": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - North Win (G.NNW24.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 215": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NNW Win (G.NNW24.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 217": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - NW Win (G.NNW24.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 219": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 221": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - WNW Win (G.NNW24.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - West Win (G.NNW24.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 223": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW6.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WSW8.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - West Win (G.WSW8.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - WSW Win (G.WSW8.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - SW Win (G.WSW8.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - SSW Win (G.WSW8.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - South Win (G.WSW8.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - West Win (G.C15.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW16.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - NW Win (G.WNW16.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - West Win (G.WNW16.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - NW Win (G.C48.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - NNW Win (G.C48.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - NNW Win (G.C48.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW49.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.S2.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.S3.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.S4.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.S5.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WSW20.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - West Win (G.WSW20.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - WSW Win (G.WSW20.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - SW Win (G.WSW20.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - SSW Win (G.WSW20.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.WSW20.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW21.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - WNW Win (G.C22.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW23.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - WNW Win (G.WNW24.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - NW Win (G.C36.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - NNW Win (G.C36.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - NNW Win (G.C36.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 214": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 218": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 216": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 220": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 224": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "Window 222": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - West Win (G.W38.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - West Win (G.W38.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - WNW Win (G.W38.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - NW Win (G.W38.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - North Win (G.NW42.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.NW42.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - South Win (G.S1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - South Win (G.S3.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - South Win (G.S8.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - South Win (G.S3.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - WNW Win (G.C14.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.N22.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2 - South Win (G.S6.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - South Win (G.S2.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - South Win (G.S3.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - WNW Win (G.WNW7.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - West Win (G.C17.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "3 - West Win (G.C17.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "4 - South Win (G.S6.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - South Win (G.S8.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - South Win (G.S8.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - East Win (G.S8.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - WNW Win (G.S8.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - East Win (G.NNW9.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - South Win (G.NNW9.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - North Win (G.NNW9.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - North Win (G.NNW9.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - NNW Win (G.NNW9.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - NW Win (G.NNW9.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "5 - WNW Win (G.NNW9.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - NW Win (G.NNW13.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NNW13.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NNW13.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - North Win (G.NNW13.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - North Win (G.NNW13.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - North Win (G.N14.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - North Win (G.N38.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - South Win (G.SW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - WNW Win (G.SW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - East Win (G.S4.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - East Win (G.E5.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - East Win (G.C16.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - North Win (G.N39.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - North Win (G.NW42.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - NNW Win (G.NW42.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - NW Win (G.NW42.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - WNW Win (G.NW42.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - WNW Win (G.NW42.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "6 - WNW Win (G.WNW43.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - South Win (G.S4.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - East Win (G.SE5.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - South Win (G.SE5.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - WNW Win (G.WNW8.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - East Win (G.E9.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW14.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW14.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW14.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW14.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.NW14.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.N17.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.N17.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.N20.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.N22.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.N23.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.N25.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.N26.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - North Win (G.NW27.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - NNW Win (G.NW27.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - NW Win (G.NW27.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW27.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - WNW Win (G.NW27.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - East Win (G.C28.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - South Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "7 - WNW Win (G.SSW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - South Win (G.S5.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - South Win (G.ESE6.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - East Win (G.ESE6.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - East Win (G.E10.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - East Win (G.E11.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - East Win (G.E12.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - WNW Win (G.WNW15.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.NW16.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NW16.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW16.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW16.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW16.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.N17.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.N18.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.N19.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.N20.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.N23.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.N23.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NW Win (G.NNW24.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NNW24.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NNW Win (G.NNW24.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - North Win (G.NNW24.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - WNW Win (G.NW26.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - NW Win (G.NW26.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - South Win (G.WSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - WNW Win (G.WSW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "8 - South Win (G.S2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + } + }, + "5-23": { + "2 - North Win (G.WNW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - North Win (G.WNW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - North Win (G.WNW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "2 - NNW Win (G.WNW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.WNW1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NNW Win (G.WNW1.E2.W1) missing:has_manual_interior_shades" + } + }, + "2 - NW Win (G.WNW1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.WNW1.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NW Win (G.WNW1.E3.W1) missing:has_manual_interior_shades" + } + }, + "2 - NW Win (G.WNW1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.WNW1.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NW Win (G.WNW1.E4.W1) missing:has_manual_interior_shades" + } + }, + "2 - WNW Win (G.WNW1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.WNW1.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WNW Win (G.WNW1.E5.W1) missing:has_manual_interior_shades" + } + }, + "2 - West Win (G.WNW1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.WNW1.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - West Win (G.WNW1.E6.W1) missing:has_manual_interior_shades" + } + }, + "2 - WSW Win (G.WNW1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WSW Win (G.WNW1.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WSW Win (G.WNW1.E7.W1) missing:has_manual_interior_shades" + } + }, + "2 - WNW Win (G.W2.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.W2.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WNW Win (G.W2.E8.W1) missing:has_manual_interior_shades" + } + }, + "2 - West Win (G.W2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.W2.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - West Win (G.W2.E9.W1) missing:has_manual_interior_shades" + } + }, + "2 - WSW Win (G.W2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WSW Win (G.W2.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WSW Win (G.W2.E10.W1) missing:has_manual_interior_shades" + } + }, + "2 - SW Win (G.W2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - SW Win (G.W2.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - SW Win (G.W2.E11.W1) missing:has_manual_interior_shades" + } + }, + "2 - SSW Win (G.W2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - SSW Win (G.W2.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - SSW Win (G.W2.E12.W1) missing:has_manual_interior_shades" + } + }, + "2 - South Win (G.W2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.W2.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - South Win (G.W2.E13.W1) missing:has_manual_interior_shades" + } + }, + "2 - South Win (G.S5.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S5.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - South Win (G.S5.E14.W1) missing:has_manual_interior_shades" + } + }, + "2 - South Win (G.S7.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S7.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - South Win (G.S7.E16.W1) missing:has_manual_interior_shades" + } + }, + "2 - South Win (G.S12.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S12.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - South Win (G.S12.E17.W1) missing:has_manual_interior_shades" + } + }, + "2 - South Win (G.C13.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.C13.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - South Win (G.C13.E18.W1) missing:has_manual_interior_shades" + } + }, + "2 - West Win (G.NNW24.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.NNW24.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - West Win (G.NNW24.E19.W1) missing:has_manual_interior_shades" + } + }, + "2 - WNW Win (G.NNW24.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E20.W1) missing:has_manual_interior_shades" + } + }, + "2 - NW Win (G.NNW24.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.NNW24.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NW Win (G.NNW24.E21.W1) missing:has_manual_interior_shades" + } + }, + "2 - NW Win (G.NNW24.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.NNW24.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NW Win (G.NNW24.E22.W1) missing:has_manual_interior_shades" + } + }, + "2 - NNW Win (G.NNW24.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E23.W1) missing:has_manual_interior_shades" + } + }, + "2 - NNW Win (G.NNW24.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E24.W1) missing:has_manual_interior_shades" + } + }, + "2 - North Win (G.NNW24.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - North Win (G.NNW24.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - North Win (G.NNW24.E25.W1) missing:has_manual_interior_shades" + } + }, + "Window 203": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 203 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 203 missing:has_manual_interior_shades" + } + }, + "2 - NNE Win (G.NNW24.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNE Win (G.NNW24.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NNE Win (G.NNW24.E26.W1) missing:has_manual_interior_shades" + } + }, + "Window 205": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 205 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 205 missing:has_manual_interior_shades" + } + }, + "2 - NNE Win (G.NNW24.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNE Win (G.NNW24.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NNE Win (G.NNW24.E27.W1) missing:has_manual_interior_shades" + } + }, + "Window 207": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 207 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 207 missing:has_manual_interior_shades" + } + }, + "2 - NE Win (G.NNW24.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NE Win (G.NNW24.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NE Win (G.NNW24.E28.W1) missing:has_manual_interior_shades" + } + }, + "Window 209": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 209 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 209 missing:has_manual_interior_shades" + } + }, + "2 - NE Win (G.NNW24.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NE Win (G.NNW24.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NE Win (G.NNW24.E29.W1) missing:has_manual_interior_shades" + } + }, + "Window 211": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 211 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 211 missing:has_manual_interior_shades" + } + }, + "2 - NE Win (G.NNW24.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NE Win (G.NNW24.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NE Win (G.NNW24.E30.W1) missing:has_manual_interior_shades" + } + }, + "Window 213": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 213 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 213 missing:has_manual_interior_shades" + } + }, + "2 - North Win (G.NNW24.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - North Win (G.NNW24.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - North Win (G.NNW24.E31.W1) missing:has_manual_interior_shades" + } + }, + "Window 215": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 215 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 215 missing:has_manual_interior_shades" + } + }, + "2 - NNW Win (G.NNW24.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NNW Win (G.NNW24.E32.W1) missing:has_manual_interior_shades" + } + }, + "Window 217": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 217 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 217 missing:has_manual_interior_shades" + } + }, + "2 - NW Win (G.NNW24.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - NW Win (G.NNW24.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - NW Win (G.NNW24.E33.W1) missing:has_manual_interior_shades" + } + }, + "Window 219": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 219 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 219 missing:has_manual_interior_shades" + } + }, + "2 - WNW Win (G.NNW24.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E34.W1) missing:has_manual_interior_shades" + } + }, + "Window 221": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 221 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 221 missing:has_manual_interior_shades" + } + }, + "2 - WNW Win (G.NNW24.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E35.W1) missing:has_manual_interior_shades" + } + }, + "2 - WNW Win (G.NNW24.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E36.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - WNW Win (G.NNW24.E36.W1) missing:has_manual_interior_shades" + } + }, + "2 - West Win (G.NNW24.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - West Win (G.NNW24.E37.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - West Win (G.NNW24.E37.W1) missing:has_manual_interior_shades" + } + }, + "Window 223": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 223 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 223 missing:has_manual_interior_shades" + } + }, + "3 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades" + } + }, + "3 - WNW Win (G.WNW6.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW6.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - WNW Win (G.WNW6.E6.W1) missing:has_manual_interior_shades" + } + }, + "3 - WNW Win (G.WSW8.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WSW8.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - WNW Win (G.WSW8.E8.W1) missing:has_manual_interior_shades" + } + }, + "3 - West Win (G.WSW8.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.WSW8.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - West Win (G.WSW8.E9.W1) missing:has_manual_interior_shades" + } + }, + "3 - WSW Win (G.WSW8.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WSW Win (G.WSW8.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - WSW Win (G.WSW8.E10.W1) missing:has_manual_interior_shades" + } + }, + "3 - SW Win (G.WSW8.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - SW Win (G.WSW8.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - SW Win (G.WSW8.E11.W1) missing:has_manual_interior_shades" + } + }, + "3 - SSW Win (G.WSW8.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - SSW Win (G.WSW8.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - SSW Win (G.WSW8.E12.W1) missing:has_manual_interior_shades" + } + }, + "3 - South Win (G.WSW8.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.WSW8.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - South Win (G.WSW8.E13.W1) missing:has_manual_interior_shades" + } + }, + "3 - West Win (G.C15.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.C15.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - West Win (G.C15.E14.W1) missing:has_manual_interior_shades" + } + }, + "3 - WNW Win (G.WNW16.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW16.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - WNW Win (G.WNW16.E15.W1) missing:has_manual_interior_shades" + } + }, + "3 - NW Win (G.WNW16.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NW Win (G.WNW16.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - NW Win (G.WNW16.E16.W1) missing:has_manual_interior_shades" + } + }, + "3 - West Win (G.WNW16.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.WNW16.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - West Win (G.WNW16.E17.W1) missing:has_manual_interior_shades" + } + }, + "3 - NW Win (G.C48.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NW Win (G.C48.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - NW Win (G.C48.E20.W1) missing:has_manual_interior_shades" + } + }, + "3 - NNW Win (G.C48.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NNW Win (G.C48.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - NNW Win (G.C48.E21.W1) missing:has_manual_interior_shades" + } + }, + "3 - NNW Win (G.C48.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - NNW Win (G.C48.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - NNW Win (G.C48.E22.W1) missing:has_manual_interior_shades" + } + }, + "3 - WNW Win (G.WNW49.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW49.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - WNW Win (G.WNW49.E23.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.S2.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S2.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.S2.E2.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.S3.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S3.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.S3.E3.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.S4.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S4.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.S4.E4.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.S5.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S5.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.S5.E5.W1) missing:has_manual_interior_shades" + } + }, + "4 - WNW Win (G.WSW20.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WSW20.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - WNW Win (G.WSW20.E7.W1) missing:has_manual_interior_shades" + } + }, + "4 - West Win (G.WSW20.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - West Win (G.WSW20.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - West Win (G.WSW20.E8.W1) missing:has_manual_interior_shades" + } + }, + "4 - WSW Win (G.WSW20.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WSW Win (G.WSW20.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - WSW Win (G.WSW20.E9.W1) missing:has_manual_interior_shades" + } + }, + "4 - SW Win (G.WSW20.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - SW Win (G.WSW20.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - SW Win (G.WSW20.E10.W1) missing:has_manual_interior_shades" + } + }, + "4 - SSW Win (G.WSW20.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - SSW Win (G.WSW20.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - SSW Win (G.WSW20.E11.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.WSW20.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.WSW20.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.WSW20.E12.W1) missing:has_manual_interior_shades" + } + }, + "4 - WNW Win (G.WNW21.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WNW21.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - WNW Win (G.WNW21.E13.W1) missing:has_manual_interior_shades" + } + }, + "4 - WNW Win (G.C22.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.C22.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - WNW Win (G.C22.E14.W1) missing:has_manual_interior_shades" + } + }, + "4 - WNW Win (G.WNW23.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WNW23.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - WNW Win (G.WNW23.E15.W1) missing:has_manual_interior_shades" + } + }, + "4 - WNW Win (G.WNW24.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.WNW24.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - WNW Win (G.WNW24.E16.W1) missing:has_manual_interior_shades" + } + }, + "4 - NW Win (G.C36.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NW Win (G.C36.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - NW Win (G.C36.E17.W1) missing:has_manual_interior_shades" + } + }, + "4 - NNW Win (G.C36.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NNW Win (G.C36.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - NNW Win (G.C36.E18.W1) missing:has_manual_interior_shades" + } + }, + "4 - NNW Win (G.C36.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NNW Win (G.C36.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - NNW Win (G.C36.E19.W1) missing:has_manual_interior_shades" + } + }, + "Window 214": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 214 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 214 missing:has_manual_interior_shades" + } + }, + "Window 218": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 218 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 218 missing:has_manual_interior_shades" + } + }, + "Window 216": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 216 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 216 missing:has_manual_interior_shades" + } + }, + "Window 220": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 220 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 220 missing:has_manual_interior_shades" + } + }, + "Window 224": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 224 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 224 missing:has_manual_interior_shades" + } + }, + "Window 222": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Window 222 missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:Window 222 missing:has_manual_interior_shades" + } + }, + "4 - West Win (G.W38.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - West Win (G.W38.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - West Win (G.W38.E20.W1) missing:has_manual_interior_shades" + } + }, + "4 - West Win (G.W38.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - West Win (G.W38.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - West Win (G.W38.E21.W1) missing:has_manual_interior_shades" + } + }, + "4 - WNW Win (G.W38.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - WNW Win (G.W38.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - WNW Win (G.W38.E22.W1) missing:has_manual_interior_shades" + } + }, + "4 - NW Win (G.W38.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - NW Win (G.W38.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - NW Win (G.W38.E23.W1) missing:has_manual_interior_shades" + } + }, + "4 - North Win (G.NW42.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - North Win (G.NW42.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - North Win (G.NW42.E24.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.NW42.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.NW42.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.NW42.E26.W1) missing:has_manual_interior_shades" + } + }, + "5 - South Win (G.S1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - South Win (G.S1.E1.W1) missing:has_manual_interior_shades" + } + }, + "6 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades" + } + }, + "6 - South Win (G.S8.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S8.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - South Win (G.S8.E9.W1) missing:has_manual_interior_shades" + } + }, + "7 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades" + } + }, + "8 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.C14.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.C14.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.C14.E13.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.N22.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N22.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.N22.E24.W1) missing:has_manual_interior_shades" + } + }, + "2 - South Win (G.S6.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2 - South Win (G.S6.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2 - South Win (G.S6.E15.W1) missing:has_manual_interior_shades" + } + }, + "3 - South Win (G.S2.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S2.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - South Win (G.S2.E2.W1) missing:has_manual_interior_shades" + } + }, + "3 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades" + } + }, + "3 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades" + } + }, + "3 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades" + } + }, + "3 - WNW Win (G.WNW7.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - WNW Win (G.WNW7.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - WNW Win (G.WNW7.E7.W1) missing:has_manual_interior_shades" + } + }, + "3 - West Win (G.C17.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.C17.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - West Win (G.C17.E18.W1) missing:has_manual_interior_shades" + } + }, + "3 - West Win (G.C17.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:3 - West Win (G.C17.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:3 - West Win (G.C17.E19.W1) missing:has_manual_interior_shades" + } + }, + "4 - South Win (G.S6.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:4 - South Win (G.S6.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:4 - South Win (G.S6.E6.W1) missing:has_manual_interior_shades" + } + }, + "5 - South Win (G.S8.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.S8.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - South Win (G.S8.E3.W1) missing:has_manual_interior_shades" + } + }, + "5 - South Win (G.S8.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.S8.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - South Win (G.S8.E4.W1) missing:has_manual_interior_shades" + } + }, + "5 - East Win (G.S8.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - East Win (G.S8.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - East Win (G.S8.E5.W1) missing:has_manual_interior_shades" + } + }, + "5 - WNW Win (G.S8.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.S8.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - WNW Win (G.S8.E6.W1) missing:has_manual_interior_shades" + } + }, + "5 - East Win (G.NNW9.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - East Win (G.NNW9.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - East Win (G.NNW9.E7.W1) missing:has_manual_interior_shades" + } + }, + "5 - South Win (G.NNW9.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - South Win (G.NNW9.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - South Win (G.NNW9.E8.W1) missing:has_manual_interior_shades" + } + }, + "5 - WNW Win (G.NNW9.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E9.W1) missing:has_manual_interior_shades" + } + }, + "5 - NW Win (G.NNW9.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - NW Win (G.NNW9.E10.W1) missing:has_manual_interior_shades" + } + }, + "5 - NW Win (G.NNW9.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - NW Win (G.NNW9.E11.W1) missing:has_manual_interior_shades" + } + }, + "5 - NW Win (G.NNW9.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - NW Win (G.NNW9.E12.W1) missing:has_manual_interior_shades" + } + }, + "5 - NNW Win (G.NNW9.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E13.W1) missing:has_manual_interior_shades" + } + }, + "5 - NNW Win (G.NNW9.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E14.W1) missing:has_manual_interior_shades" + } + }, + "5 - North Win (G.NNW9.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - North Win (G.NNW9.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - North Win (G.NNW9.E15.W1) missing:has_manual_interior_shades" + } + }, + "5 - North Win (G.NNW9.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - North Win (G.NNW9.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - North Win (G.NNW9.E16.W1) missing:has_manual_interior_shades" + } + }, + "5 - NNW Win (G.NNW9.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - NNW Win (G.NNW9.E17.W1) missing:has_manual_interior_shades" + } + }, + "5 - NW Win (G.NNW9.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - NW Win (G.NNW9.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - NW Win (G.NNW9.E18.W1) missing:has_manual_interior_shades" + } + }, + "5 - WNW Win (G.NNW9.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E19.W1) missing:has_manual_interior_shades" + } + }, + "5 - WNW Win (G.NNW9.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - WNW Win (G.NNW9.E20.W1) missing:has_manual_interior_shades" + } + }, + "6 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades" + } + }, + "6 - NW Win (G.NNW13.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NNW13.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - NW Win (G.NNW13.E15.W1) missing:has_manual_interior_shades" + } + }, + "6 - NW Win (G.NNW13.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NNW13.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - NW Win (G.NNW13.E16.W1) missing:has_manual_interior_shades" + } + }, + "6 - NW Win (G.NNW13.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NNW13.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - NW Win (G.NNW13.E17.W1) missing:has_manual_interior_shades" + } + }, + "6 - NNW Win (G.NNW13.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NNW Win (G.NNW13.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - NNW Win (G.NNW13.E18.W1) missing:has_manual_interior_shades" + } + }, + "6 - NNW Win (G.NNW13.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NNW Win (G.NNW13.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - NNW Win (G.NNW13.E19.W1) missing:has_manual_interior_shades" + } + }, + "6 - North Win (G.NNW13.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NNW13.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - North Win (G.NNW13.E20.W1) missing:has_manual_interior_shades" + } + }, + "6 - North Win (G.NNW13.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NNW13.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - North Win (G.NNW13.E21.W1) missing:has_manual_interior_shades" + } + }, + "6 - North Win (G.N14.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.N14.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - North Win (G.N14.E22.W1) missing:has_manual_interior_shades" + } + }, + "6 - North Win (G.N38.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.N38.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - North Win (G.N38.E24.W1) missing:has_manual_interior_shades" + } + }, + "6 - South Win (G.SW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.SW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - South Win (G.SW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "6 - WNW Win (G.SW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.SW1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - WNW Win (G.SW1.E2.W1) missing:has_manual_interior_shades" + } + }, + "6 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades" + } + }, + "6 - East Win (G.S4.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.S4.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - East Win (G.S4.E6.W1) missing:has_manual_interior_shades" + } + }, + "6 - East Win (G.E5.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.E5.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - East Win (G.E5.E7.W1) missing:has_manual_interior_shades" + } + }, + "6 - East Win (G.C16.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.C16.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - East Win (G.C16.E23.W1) missing:has_manual_interior_shades" + } + }, + "6 - North Win (G.N39.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.N39.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - North Win (G.N39.E25.W1) missing:has_manual_interior_shades" + } + }, + "6 - North Win (G.NW42.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NW42.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - North Win (G.NW42.E26.W1) missing:has_manual_interior_shades" + } + }, + "6 - NNW Win (G.NW42.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NNW Win (G.NW42.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - NNW Win (G.NW42.E27.W1) missing:has_manual_interior_shades" + } + }, + "6 - NW Win (G.NW42.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - NW Win (G.NW42.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - NW Win (G.NW42.E28.W1) missing:has_manual_interior_shades" + } + }, + "6 - WNW Win (G.NW42.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW42.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - WNW Win (G.NW42.E29.W1) missing:has_manual_interior_shades" + } + }, + "6 - WNW Win (G.NW42.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW42.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - WNW Win (G.NW42.E30.W1) missing:has_manual_interior_shades" + } + }, + "6 - WNW Win (G.WNW43.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.WNW43.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - WNW Win (G.WNW43.E31.W1) missing:has_manual_interior_shades" + } + }, + "7 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades" + } + }, + "7 - South Win (G.S4.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - South Win (G.S4.E5.W1) missing:has_manual_interior_shades" + } + }, + "7 - East Win (G.SE5.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.SE5.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - East Win (G.SE5.E6.W1) missing:has_manual_interior_shades" + } + }, + "7 - South Win (G.SE5.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.SE5.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - South Win (G.SE5.E7.W1) missing:has_manual_interior_shades" + } + }, + "7 - WNW Win (G.WNW8.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.WNW8.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - WNW Win (G.WNW8.E8.W1) missing:has_manual_interior_shades" + } + }, + "7 - East Win (G.E9.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.E9.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - East Win (G.E9.E9.W1) missing:has_manual_interior_shades" + } + }, + "7 - WNW Win (G.NW14.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW14.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - WNW Win (G.NW14.E16.W1) missing:has_manual_interior_shades" + } + }, + "7 - NW Win (G.NW14.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW14.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - NW Win (G.NW14.E17.W1) missing:has_manual_interior_shades" + } + }, + "7 - NW Win (G.NW14.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW14.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - NW Win (G.NW14.E18.W1) missing:has_manual_interior_shades" + } + }, + "7 - NW Win (G.NW14.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW14.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - NW Win (G.NW14.E19.W1) missing:has_manual_interior_shades" + } + }, + "7 - NNW Win (G.NW14.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NNW Win (G.NW14.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - NNW Win (G.NW14.E20.W1) missing:has_manual_interior_shades" + } + }, + "7 - NNW Win (G.NW14.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NNW Win (G.NW14.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - NNW Win (G.NW14.E21.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.NW14.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.NW14.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.NW14.E22.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.N17.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N17.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.N17.E23.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.N17.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N17.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.N17.E24.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.N20.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N20.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.N20.E25.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.N22.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N22.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.N22.E26.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.N23.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N23.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.N23.E27.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.N25.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N25.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.N25.E28.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.N26.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.N26.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.N26.E29.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.NW27.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.NW27.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.NW27.E30.W1) missing:has_manual_interior_shades" + } + }, + "7 - NNW Win (G.NW27.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NNW Win (G.NW27.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - NNW Win (G.NW27.E31.W1) missing:has_manual_interior_shades" + } + }, + "7 - NW Win (G.NW27.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - NW Win (G.NW27.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - NW Win (G.NW27.E32.W1) missing:has_manual_interior_shades" + } + }, + "7 - WNW Win (G.NW27.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW27.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - WNW Win (G.NW27.E33.W1) missing:has_manual_interior_shades" + } + }, + "7 - WNW Win (G.NW27.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW27.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - WNW Win (G.NW27.E34.W1) missing:has_manual_interior_shades" + } + }, + "7 - East Win (G.C28.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.C28.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - East Win (G.C28.E35.W1) missing:has_manual_interior_shades" + } + }, + "7 - South Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - South Win (G.SSW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - South Win (G.SSW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "7 - WNW Win (G.SSW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.SSW1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - WNW Win (G.SSW1.E2.W1) missing:has_manual_interior_shades" + } + }, + "8 - South Win (G.S5.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S5.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - South Win (G.S5.E6.W1) missing:has_manual_interior_shades" + } + }, + "8 - South Win (G.ESE6.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.ESE6.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - South Win (G.ESE6.E7.W1) missing:has_manual_interior_shades" + } + }, + "8 - East Win (G.ESE6.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.ESE6.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - East Win (G.ESE6.E8.W1) missing:has_manual_interior_shades" + } + }, + "8 - East Win (G.E10.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E10.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - East Win (G.E10.E9.W1) missing:has_manual_interior_shades" + } + }, + "8 - East Win (G.E11.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E11.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - East Win (G.E11.E10.W1) missing:has_manual_interior_shades" + } + }, + "8 - East Win (G.E12.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E12.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - East Win (G.E12.E11.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.WNW15.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.WNW15.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.WNW15.E14.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.NW16.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.NW16.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.NW16.E15.W1) missing:has_manual_interior_shades" + } + }, + "8 - NNW Win (G.NW16.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NNW Win (G.NW16.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NNW Win (G.NW16.E16.W1) missing:has_manual_interior_shades" + } + }, + "8 - NW Win (G.NW16.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW16.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NW Win (G.NW16.E17.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.NW16.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW16.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.NW16.E18.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.NW16.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW16.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.NW16.E19.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.N17.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N17.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.N17.E20.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.N18.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N18.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.N18.E21.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.N19.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N19.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.N19.E22.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.N20.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N20.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.N20.E23.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.N23.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N23.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.N23.E25.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.N23.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.N23.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.N23.E26.W1) missing:has_manual_interior_shades" + } + }, + "8 - NW Win (G.NNW24.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NNW24.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NW Win (G.NNW24.E27.W1) missing:has_manual_interior_shades" + } + }, + "8 - NNW Win (G.NNW24.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NNW Win (G.NNW24.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NNW Win (G.NNW24.E28.W1) missing:has_manual_interior_shades" + } + }, + "8 - NNW Win (G.NNW24.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NNW Win (G.NNW24.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NNW Win (G.NNW24.E29.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.NNW24.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.NNW24.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.NNW24.E30.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.NW26.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW26.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.NW26.E31.W1) missing:has_manual_interior_shades" + } + }, + "8 - NW Win (G.NW26.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW26.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NW Win (G.NW26.E32.W1) missing:has_manual_interior_shades" + } + }, + "8 - NW Win (G.NW26.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW26.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NW Win (G.NW26.E33.W1) missing:has_manual_interior_shades" + } + }, + "8 - NW Win (G.NW26.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - NW Win (G.NW26.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - NW Win (G.NW26.E34.W1) missing:has_manual_interior_shades" + } + }, + "8 - South Win (G.WSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.WSW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - South Win (G.WSW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.WSW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.WSW1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.WSW1.E2.W1) missing:has_manual_interior_shades" + } + }, + "8 - South Win (G.S2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - South Win (G.S2.E3.W1) missing:has_manual_interior_shades" + } + }, + "7 - East Win (G.E10.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - East Win (G.E10.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - East Win (G.E10.E10.W1) missing:has_manual_interior_shades" + } + }, + "7 - North Win (G.NW13.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - North Win (G.NW13.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - North Win (G.NW13.E11.W1) missing:has_manual_interior_shades" + } + }, + "7 - West Win (G.NW13.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - West Win (G.NW13.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - West Win (G.NW13.E12.W1) missing:has_manual_interior_shades" + } + }, + "7 - West Win (G.NW13.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - West Win (G.NW13.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - West Win (G.NW13.E13.W1) missing:has_manual_interior_shades" + } + }, + "7 - WNW Win (G.NW13.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW13.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - WNW Win (G.NW13.E14.W1) missing:has_manual_interior_shades" + } + }, + "7 - WNW Win (G.NW13.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:7 - WNW Win (G.NW13.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:7 - WNW Win (G.NW13.E15.W1) missing:has_manual_interior_shades" + } + }, + "8 - South Win (G.S3.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - South Win (G.S3.E4.W1) missing:has_manual_interior_shades" + } + }, + "8 - East Win (G.E13.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - East Win (G.E13.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - East Win (G.E13.E12.W1) missing:has_manual_interior_shades" + } + }, + "8 - West Win (G.NW29.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - West Win (G.NW29.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - West Win (G.NW29.E35.W1) missing:has_manual_interior_shades" + } + }, + "8 - West Win (G.NW29.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - West Win (G.NW29.E36.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - West Win (G.NW29.E36.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.NW29.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW29.E37.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.NW29.E37.W1) missing:has_manual_interior_shades" + } + }, + "8 - WNW Win (G.NW29.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - WNW Win (G.NW29.E38.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - WNW Win (G.NW29.E38.W1) missing:has_manual_interior_shades" + } + }, + "8 - North Win (G.NW29.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:8 - North Win (G.NW29.E39.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:8 - North Win (G.NW29.E39.W1) missing:has_manual_interior_shades" + } + }, + "5 - East Win (G.E7.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - East Win (G.E7.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - East Win (G.E7.E2.W1) missing:has_manual_interior_shades" + } + }, + "5 - West Win (G.W10.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - West Win (G.W10.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - West Win (G.W10.E21.W1) missing:has_manual_interior_shades" + } + }, + "5 - West Win (G.W10.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - West Win (G.W10.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - West Win (G.W10.E22.W1) missing:has_manual_interior_shades" + } + }, + "5 - WNW Win (G.W10.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:5 - WNW Win (G.W10.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:5 - WNW Win (G.W10.E23.W1) missing:has_manual_interior_shades" + } + }, + "6 - East Win (G.E7.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - East Win (G.E7.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - East Win (G.E7.E8.W1) missing:has_manual_interior_shades" + } + }, + "6 - North Win (G.NW11.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - North Win (G.NW11.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - North Win (G.NW11.E10.W1) missing:has_manual_interior_shades" + } + }, + "6 - West Win (G.NW11.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - West Win (G.NW11.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - West Win (G.NW11.E11.W1) missing:has_manual_interior_shades" + } + }, + "6 - West Win (G.NW11.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - West Win (G.NW11.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - West Win (G.NW11.E12.W1) missing:has_manual_interior_shades" + } + }, + "6 - WNW Win (G.NW11.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW11.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - WNW Win (G.NW11.E13.W1) missing:has_manual_interior_shades" + } + }, + "6 - WNW Win (G.NW11.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:6 - WNW Win (G.NW11.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:6 - WNW Win (G.NW11.E14.W1) missing:has_manual_interior_shades" + } + } + }, + "5-24": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_skylight_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_b", + "value": "27496.87975", + "unit": "ft2" + }, + { + "variable": "total_skylight_area_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_p", + "value": "27496.879750000007", + "unit": "ft2" + }, + { + "variable": "skylight_roof_ratio_b", + "value": "0.0 dimensionless" + }, + { + "variable": "skylight_roof_ratio_p", + "value": "0.0 dimensionless" + } + ], + "messages": "" + } + }, + "5-25": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-26": { + "HOSPITAL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-27": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-28": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-29": { + "Exterior Wall 323": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 327": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 322": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 326": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 328": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 321": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 325": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 320": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 324": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.WSW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.S3.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.S4.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.NW7.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.ENE11.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.S9.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-30": { + "P - Roof (G.WSW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.S4.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.NW7.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.ENE11.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 325": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 320": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 324": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 321": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 323": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.S9.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 322": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.S3.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 327": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 328": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "Exterior Wall 326": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-31": { + "Exterior Wall 323": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 327": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 322": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 326": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 328": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 321": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 325": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 320": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "Exterior Wall 324": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "P - Roof (G.WSW1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "P - Roof (G.S3.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "P - Roof (G.S4.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "P - Roof (G.NW7.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "P - Roof (G.ENE11.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + }, + "P - Roof (G.S9.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.6" + } + ], + "messages": "" + } + }, + "5-32": { + "P - Roof (G.WSW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.S4.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.NW7.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.ENE11.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 325": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 320": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 324": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 321": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 323": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.S9.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 322": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "P - Roof (G.S3.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 327": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 328": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 326": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-33": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "failing_infiltration_ids", + "value": "['7 - Stairs 1 zn Infil', '7 - Laundry zn Infil', '7 - Storage 1 zn Infil', '7 - Electrical 1 zn Infil', '7 - Storage 2 zn Infil', '7 - Storage 3 zn Infil', '7 - Storage 4 zn Infil', '7 - Electrical 2 zn Infil', '7 - Electrical 3 zn Infil', '8 - Stairs 1 zn Infil', '8 - Storage 1 zn Infil', '8 - Storage 2 zn Infil', '8 - Laundry zn Infil', '8 - Electrical 1 zn Infil', '8 - Storage 3 zn Infil', '8 - Storage 4 zn Infil', '8 - Storage 5 zn Infil', '8 - Storage 6 zn Infil', '8 - Electrical 2 zn Infil', '8 - Lounge 6 zn Infil', '8 - Electrical 3 zn Infil', 'P - Generator Rm zn Infil', 'P - Stairs 1 zn Infil', 'P - Mechanical 1 zn Infil', 'P - Mechanical 2 zn Infil', 'P - Mechanical 3 zn Infil', 'P - Mechanical 4 zn Infil', '7 - Lounge 1 zn Infil', '7 - Patient Rm 2 zn Infil', '7 - Patient Rm 3 zn Infil', '7 - Restroom 1 zn Infil', '7 - Patient Rm 4 zn Infil', '7 - Patient Rm 5 zn Infil', '7 - Office 1 zn Infil', '7 - Restroom 2 zn Infil', '7 - Office 2 zn Infil', '7 - Restroom 3 zn Infil', '7 - Lounge 2 zn Infil', '7 - Conference 1 zn Infil', '7 - Restroom 4 zn Infil', '7 - Lounge 3 zn Infil', '7 - Lounge 4 zn Infil', '7 - Office 3 zn Infil', '7 - Restroom 5 zn Infil', '7 - Corridor 1 zn Infil', '7 - Office 4 zn Infil', '7 - Patient Rm 6 zn Infil', '7 - Patient Rm 7 zn Infil', '7 - Corridor 2 zn Infil', '7 - Office 5 zn Infil', '7 - Conference 2 zn Infil', '7 - Med Supply 1 zn Infil', '7 - Washing 1 zn Infil', '7 - Office 6 zn Infil', '7 - Med Supply 2 zn Infil', '7 - Restroom 6 zn Infil', '7 - Office 7 zn Infil', '7 - Corridor 3 zn Infil', '7 - Office 8 zn Infil', '7 - Office 9 zn Infil', '7 - Med Supply 3 zn Infil', '7 - Med Supply 4 zn Infil', '7 - Imaging 1 zn Infil', '7 - Corridor 4 zn Infil', '7 - Patient Rm 1 zn Infil', '8 - Patient Rm 2 zn Infil', '8 - Lounge 2 zn Infil', '8 - Restroom 1 zn Infil', '8 - Office 1 zn Infil', '8 - Patient Rm 3 zn Infil', '8 - Office 2 zn Infil', '8 - Conference 1 zn Infil', '8 - Patient Rm 4 zn Infil', '8 - Patient Rm 5 zn Infil', '8 - Patient Rm 6 zn Infil', '8 - Patient Rm 7 zn Infil', '8 - Exercise zn Infil', '8 - Lounge 3 zn Infil', '8 - Conference 2 zn Infil', '8 - Office 3 zn Infil', '8 - Lounge 4 zn Infil', '8 - Restroom 2 zn Infil', '8 - Lounge 5 zn Infil', '8 - Restroom 3 zn Infil', '8 - Corridor 1 zn Infil', '8 - Lab 1 zn Infil', '8 - Office 4 zn Infil', '8 - Corridor 2 zn Infil', '8 - Med Supply 1 zn Infil', '8 - Office 5 zn Infil', '8 - Med Supply 2 zn Infil', '8 - Conference 3 zn Infil', '8 - Office 6 zn Infil', '8 - Med Supply 3 zn Infil', '8 - Exam 1 zn Infil', '8 - Med Supply 4 zn Infil', '8 - Med Supply 5 zn Infil', '8 - Restroom 4 zn Infil', '8 - Corridor 3 zn Infil', '8 - Corridor 4 zn Infil', '8 - Med Supply 6 zn Infil', '8 - Office 8 zn Infil', '8 - Exam 2 zn Infil', '8 - Restroom 5 zn Infil', '8 - Office 9 zn Infil', '8 - Patient Rm 1 zn Infil', '8 - Lounge 1 zn Infil', '8 - Office 7 zn Infil', '7 - Void 1 zn Infil', '7 - Void 2 zn Infil', '7 - Void 3 zn Infil', '7 - Void 4 zn Infil', '7 - Void 5 zn Infil', '7 - Void 6 zn Infil', '7 - Void 7 zn Infil', '8 - Void 1 zn Infil', '8 - Void 2 zn Infil', '8 - Void 3 zn Infil', '8 - Void 4 zn Infil', '8 - Void 5 zn Infil', '8 - Void 6 zn Infil', '8 - Void 7 zn Infil', '8 - Void 8 zn Infil', 'P - Void 1 zn Infil', 'P - Void 2 zn Infil', 'P - Void 3 zn Infil', 'P - Void 4 zn Infil', 'P - Void 6 zn Infil', 'P - Void 7 zn Infil', 'P - Void 8 zn Infil']" + } + ], + "messages": "" + } + }, + "5-34": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "failing_infiltration_zone_ids", + "value": "['2 - Lounge zn', '2 - Restroom zn', '2 - Storage zn', '2 - Storage 2 zn', '2 - Office zn', '2 - Shell 1 zn', '2 - Corridor 2 zn', '2 - Shell 2 zn', '2 - Shell 3 zn', '2 - Elev Lobby zn', '2 - Lobby zn', '2 - Shell 4 zn', '2 - Kitchen 2 zn', '2 - Kitchen zn', '2 - Dining zn', '2 - Void zn', '2 - Void 2 zn', '2 - Void 3 zn', '2 - Void 4 zn', '2 - Void 5 zn', '2 - Vestibule zn', '2 - Elec/Mech zn', '2 - Stairs zn', '2 - Stairs 2 zn']" + } + ], + "messages": "" + } + }, + "5-35": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:2 - Restroom 2 zn Infil is missing flow_rate" + } + }, + "5-36": { + "7 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "2.365622", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "2.869195", + "unit": "cfm" + } + ], + "messages": "" + }, + "7 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "14.477458880000002", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.874691200000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "7 - Void 5 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.2220625", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "10.8810625", + "unit": "cfm" + } + ], + "messages": "" + }, + "7 - Void 6 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.19156620000000002", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "9.386743800000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "7 - Void 7 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.41590499999999997", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "20.379345", + "unit": "cfm" + } + ], + "messages": "" + }, + "8 - Void 1 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "2.9155857499999995", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "4.1651225", + "unit": "cfm" + } + ], + "messages": "" + }, + "8 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.066885", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "3.2773650000000005", + "unit": "cfm" + } + ], + "messages": "" + }, + "8 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "2.607012", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "3.16197", + "unit": "cfm" + } + ], + "messages": "" + }, + "8 - Void 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "14.47745337", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.8746863", + "unit": "cfm" + } + ], + "messages": "" + }, + "8 - Void 5 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.1561", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "7.648900000000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "1 - Void 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.16206", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "7.94094", + "unit": "cfm" + } + ], + "messages": "" + }, + "2 - Void 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "8.05805", + "unit": "cfm" + } + ], + "messages": "" + }, + "2 - Void 5 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "9.4985275", + "unit": "cfm" + } + ], + "messages": "" + }, + "3 - Void zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.1812175", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "8.8796575", + "unit": "cfm" + } + ], + "messages": "" + }, + "3 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.13578", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "6.65322", + "unit": "cfm" + } + ], + "messages": "" + }, + "3 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.25985", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.732650000000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "3 - Void 5 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.09874500000000001", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "4.8385050000000005", + "unit": "cfm" + } + ], + "messages": "" + }, + "4 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.13651", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "6.6889899999999995", + "unit": "cfm" + } + ], + "messages": "" + }, + "4 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.2542", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.4558", + "unit": "cfm" + } + ], + "messages": "" + }, + "4 - Void 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.091455", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "4.481295", + "unit": "cfm" + } + ], + "messages": "" + }, + "4 - Void 5 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.227115", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "11.128635000000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "5 - Void zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.39925", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "19.56325", + "unit": "cfm" + } + ], + "messages": "" + }, + "5 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.22308000000000003", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "10.930920000000002", + "unit": "cfm" + } + ], + "messages": "" + }, + "5 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "14.704649999999999", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "8.786925", + "unit": "cfm" + } + ], + "messages": "" + }, + "5 - Void 6 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "19.9101166", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "11.8975087", + "unit": "cfm" + } + ], + "messages": "" + }, + "6 - Void zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "4.752515000000001", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "2.8399175000000003", + "unit": "cfm" + } + ], + "messages": "" + }, + "6 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "23.840860400000004", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "14.246367800000002", + "unit": "cfm" + } + ], + "messages": "" + }, + "6 - Void 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.22125999999999998", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "10.84174", + "unit": "cfm" + } + ], + "messages": "" + }, + "6 - Void 5 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.258", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.642000000000003", + "unit": "cfm" + } + ], + "messages": "" + }, + "6 - Void 6 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.15855000000000002", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "7.768950000000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "1 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.1604575", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "7.862417500000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "2 - Void zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "4.77113", + "unit": "cfm" + } + ], + "messages": "" + }, + "2 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "6.1152", + "unit": "cfm" + } + ], + "messages": "" + }, + "2 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "13.185900000000004", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Void 1 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "7.424637999999999", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "9.65006", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.6315049", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "30.943740100000007", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "95.85644166", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "82.8389002", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Void 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.17911130000000003", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "8.776453700000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Void 6 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "27.0135668", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "120.3331612", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Void 7 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.8868199", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "43.4541751", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Void 8 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "15.410268250000001", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "14.493342500000004", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "5-37": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:2 - Restroom 2 zn Infil is missing flow_rate" + } + }, + "5-38": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "ground_temperature_schedule", + "value": "None" + } + ], + "messages": "A ground temperature schedule was not found for the project." + } + }, + "5-39": { + "2 - North Wall (G.WNW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NNW Wall (G.WNW1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NW Wall (G.WNW1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NW Wall (G.WNW1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WNW Wall (G.WNW1.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - West Wall (G.WNW1.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WSW Wall (G.WNW1.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WNW Wall (G.W2.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - West Wall (G.W2.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WSW Wall (G.W2.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - SW Wall (G.W2.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - SSW Wall (G.W2.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - South Wall (G.W2.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - South Wall (G.S5.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - South Wall (G.S7.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - South Wall (G.S12.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - South Wall (G.C13.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - West Wall (G.NNW24.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WNW Wall (G.NNW24.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NW Wall (G.NNW24.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NW Wall (G.NNW24.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NNW Wall (G.NNW24.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NNW Wall (G.NNW24.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - North Wall (G.NNW24.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NNE Wall (G.NNW24.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NNE Wall (G.NNW24.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NE Wall (G.NNW24.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NE Wall (G.NNW24.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NE Wall (G.NNW24.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - North Wall (G.NNW24.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NNW Wall (G.NNW24.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - NW Wall (G.NNW24.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WNW Wall (G.NNW24.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WNW Wall (G.NNW24.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - WNW Wall (G.NNW24.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - West Wall (G.NNW24.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "Exterior Wall 319": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - South Wall (G.S1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - WNW Wall (G.WNW6.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - WNW Wall (G.WSW8.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - West Wall (G.WSW8.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - WSW Wall (G.WSW8.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - SW Wall (G.WSW8.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - SSW Wall (G.WSW8.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - South Wall (G.WSW8.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - West Wall (G.C15.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - WNW Wall (G.WNW16.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - NW Wall (G.WNW16.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - West Wall (G.WNW16.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - NW Wall (G.C48.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - NNW Wall (G.C48.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - NNW Wall (G.C48.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - WNW Wall (G.WNW49.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.S1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.S2.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.S3.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.S4.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.S5.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - WNW Wall (G.WSW20.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - West Wall (G.WSW20.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - WSW Wall (G.WSW20.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - SW Wall (G.WSW20.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - SSW Wall (G.WSW20.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.WSW20.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - WNW Wall (G.WNW21.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - WNW Wall (G.C22.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - WNW Wall (G.WNW23.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - WNW Wall (G.WNW24.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - NW Wall (G.C36.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - NNW Wall (G.C36.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - NNW Wall (G.C36.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "Exterior Wall 329": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "Exterior Wall 330": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "Exterior Wall 331": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "Exterior Wall 332": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "Exterior Wall 333": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "Exterior Wall 334": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - West Wall (G.W38.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - West Wall (G.W38.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - WNW Wall (G.W38.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - NW Wall (G.W38.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - North Wall (G.NW42.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.NW42.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - South Wall (G.S1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - South Wall (G.S3.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - South Wall (G.S8.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - South Wall (G.S3.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - South Wall (G.S4.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - WNW Wall (G.C14.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.N22.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2 - South Wall (G.S6.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - South Wall (G.S2.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - South Wall (G.S2.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - South Wall (G.S3.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - South Wall (G.S4.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - WNW Wall (G.WNW7.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - West Wall (G.C17.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "3 - West Wall (G.C17.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "4 - South Wall (G.S6.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - South Wall (G.S8.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - South Wall (G.S8.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - East Wall (G.S8.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - WNW Wall (G.S8.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - East Wall (G.NNW9.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - South Wall (G.NNW9.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - WNW Wall (G.NNW9.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - NW Wall (G.NNW9.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - NW Wall (G.NNW9.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - NW Wall (G.NNW9.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - NNW Wall (G.NNW9.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - NNW Wall (G.NNW9.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - North Wall (G.NNW9.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - North Wall (G.NNW9.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - NNW Wall (G.NNW9.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - NW Wall (G.NNW9.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - WNW Wall (G.NNW9.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "5 - WNW Wall (G.NNW9.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - South Wall (G.S2.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - NW Wall (G.NNW13.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - NW Wall (G.NNW13.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - NW Wall (G.NNW13.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - NNW Wall (G.NNW13.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - NNW Wall (G.NNW13.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - North Wall (G.NNW13.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - North Wall (G.NNW13.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - North Wall (G.N14.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - North Wall (G.N38.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - South Wall (G.SW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - WNW Wall (G.SW1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - South Wall (G.S4.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - East Wall (G.S4.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - East Wall (G.E5.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - East Wall (G.C16.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - North Wall (G.N39.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - North Wall (G.NW42.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - NNW Wall (G.NW42.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - NW Wall (G.NW42.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - WNW Wall (G.NW42.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - WNW Wall (G.NW42.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "6 - WNW Wall (G.WNW43.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - South Wall (G.S2.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - South Wall (G.S4.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - East Wall (G.SE5.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - South Wall (G.SE5.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - WNW Wall (G.WNW8.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - East Wall (G.E9.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - WNW Wall (G.NW14.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - NW Wall (G.NW14.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - NW Wall (G.NW14.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - NW Wall (G.NW14.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - NNW Wall (G.NW14.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - NNW Wall (G.NW14.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.NW14.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.N17.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.N17.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.N20.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.N22.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.N23.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.N25.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.N26.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - North Wall (G.NW27.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - NNW Wall (G.NW27.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - NW Wall (G.NW27.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - WNW Wall (G.NW27.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - WNW Wall (G.NW27.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - East Wall (G.C28.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - South Wall (G.SSW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "7 - WNW Wall (G.SSW1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - South Wall (G.S5.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - South Wall (G.ESE6.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - East Wall (G.ESE6.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - East Wall (G.E10.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - East Wall (G.E11.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - East Wall (G.E12.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - WNW Wall (G.WNW15.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.NW16.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NNW Wall (G.NW16.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NW Wall (G.NW16.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - WNW Wall (G.NW16.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - WNW Wall (G.NW16.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.N17.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.N18.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.N19.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.N20.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.N23.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.N23.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NW Wall (G.NNW24.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NNW Wall (G.NNW24.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NNW Wall (G.NNW24.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - North Wall (G.NNW24.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - WNW Wall (G.NW26.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NW Wall (G.NW26.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NW Wall (G.NW26.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - NW Wall (G.NW26.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - South Wall (G.WSW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - WNW Wall (G.WSW1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "8 - South Wall (G.S2.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-40": { + "P - Roof (G.S2.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.6" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.C5.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.6" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.N6.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.6" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.C8.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.6" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.S10.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.6" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.C12.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.6" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "P - Roof (G.NNW13.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.6" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + } + }, + "6-1": { + "HOSPITAL": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "allowable_LPD_BAM", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "building_segment_design_lighting_wattage", + "value": "128769.35984628992", + "unit": "W" + }, + { + "variable": "check_BAM_flag", + "value": "True" + }, + { + "variable": "total_building_segment_area_p", + "value": "221581.87409999978", + "unit": "ft2" + }, + { + "variable": "allowable_lighting_wattage_SBS", + "value": "182790.56579999995", + "unit": "W" + } + ], + "messages": "Project passes based on building area method. Verify if project uses building area method." + } + }, + "6-2": { + "5 - Core and Shell 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Core and Shell 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Shell 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Void 7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Void 8": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Void 8": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "G - Void 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Void 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Void 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Void 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Void 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Void 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Void 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "6-3": { + "3 - Patient Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3203", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3203", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Supply Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3746", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3746", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4398", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4398", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4233", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4233", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.45310000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.45310000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0722", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0722", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3343", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3343", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2903", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2903", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.344", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.344", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.41740000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.41740000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8319", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8319", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6622", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6622", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4464000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4464000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Nurses Station": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.2428", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.2428", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5394000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5394000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3905", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3905", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4009", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4009", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4745", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4745", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Elec/Mech 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3856", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3856", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Office 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4699", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4699", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Exam Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6966", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6966", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4831", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4831", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6887", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6887", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.37920000000000004", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.37920000000000004", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Exam Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6951000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6951000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Lockers": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.46270000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.46270000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Restroom 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.39430000000000004", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.39430000000000004", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8342", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8342", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Corridor 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3707", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3707", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6273000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6273000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Corridor 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4808", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4808", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Core and Shell 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Core and Shell 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Patient Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.47470000000000007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.47470000000000007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3604", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3604", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.49810000000000004", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.49810000000000004", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Patient Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5599000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5599000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5959", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5959", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2832", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2832", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Seating": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4791000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4791000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4657", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4657", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Open Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.48020000000000007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.48020000000000007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.718", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.718", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4441", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4441", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4886", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4886", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Supply Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3134", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3134", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Nurses Station": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.1023", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.1023", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Supply Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2165", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2165", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5018", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5018", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.33970000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.33970000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5096000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5096000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3465", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3465", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Laundry/Washing": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9483", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9483", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Elev Lobby 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Exam Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.428", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.428", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Supply Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6494", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6494", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4927000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4927000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Exam Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7173", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7173", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6741", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6741", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Patient Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5331", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5331", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Nurses Station 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7123", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7123", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Conference/Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0937", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0937", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Patient Rm 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4626", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4626", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Patient Rm 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4542", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4542", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Patient Rm 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4472", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4472", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Lounge 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.41540000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.41540000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5029", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5029", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Patient Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9020000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9020000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Restroom 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2868", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2868", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Patient Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.46320000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.46320000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Patient Rm 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5604", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5604", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5931", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5931", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.465", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.465", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44970000000000004", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44970000000000004", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Laundry": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8276000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8276000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1654", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1654", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7079", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7079", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Conference 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5972", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5972", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3724", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3724", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6282", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6282", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Lounge 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.988", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.988", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5726", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5726", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Restroom 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3801", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3801", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Corridor 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5902", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5902", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Patient Rm 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5338000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5338000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Patient Rm 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4625000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4625000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Storage 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4774", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4774", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6719", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6719", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Conference 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4395", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4395", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Med Supply 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2659", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2659", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Washing 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.881", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.881", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5967", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5967", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Med Supply 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44900000000000007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44900000000000007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Electrical 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4873", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4873", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Restroom 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.47390000000000004", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.47390000000000004", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.27610000000000007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.27610000000000007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3125", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3125", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2486", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2486", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2806", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2806", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.519", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.519", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Office 9": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6381", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6381", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Med Supply 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3681", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3681", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Electrical 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3644", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3644", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Med Supply 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6526", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6526", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Imaging 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.42860000000000004", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.42860000000000004", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Corridor 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Patient Rm 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Lounge 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8525000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8525000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.49550000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.49550000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7154", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7154", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Restroom 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3377", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3377", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5016", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5016", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Patient Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7005000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7005000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2413", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2413", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Conference 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5459", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5459", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Storage 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5029", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5029", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Patient Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.3704", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.3704", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Patient Rm 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4626", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4626", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Patient Rm 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5338000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5338000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Patient Rm 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9976", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9976", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Exercise": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3554", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3554", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7095", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7095", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Conference 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6828", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6828", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2455", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2455", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3726", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3726", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Lounge 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7592", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7592", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3532", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3532", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Lounge 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5464", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5464", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3066", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3066", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Laundry": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6014000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6014000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Corridor 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Electrical 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4879", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4879", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Lab 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8295000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8295000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.378", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.378", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3566", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3566", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4064", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4064", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Med Supply 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3325", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3325", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5446000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5446000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Med Supply 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2518000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2518000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Conference 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.41350000000000003", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.41350000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Storage 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1786", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1786", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Lounge 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7533", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7533", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Electrical 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3644", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3644", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7171", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7171", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Med Supply 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3349", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3349", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Exam 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7658000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7658000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Med Supply 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0457", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0457", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Med Supply 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4105", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4105", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2682", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2682", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Corridor 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Med Supply 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.40110000000000007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.40110000000000007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.88", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.88", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Exam 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4335", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4335", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Restroom 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3189000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3189000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Office 9": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5357000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5357000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Operating Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43960000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43960000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Operating Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9981000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9981000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Operating Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8534", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8534", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Operating Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5144000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5144000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Corridor 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6317", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6317", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4051", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4051", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5113000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5113000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Nurses Station": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.5180000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.5180000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Supply Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3916", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3916", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.8144000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.8144000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Mail Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6066000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6066000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.7113", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.7113", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Generator Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.19440000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.19440000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Mechanical 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1389", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1389", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Mechanical 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0911", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0911", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Mechanical 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Classroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7434", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7434", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.39820000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.39820000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Classroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0576", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0576", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5591", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5591", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5176", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5176", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2904", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2904", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.42030000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.42030000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4267", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4267", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4865", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4865", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Exam Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3456", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3456", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.358", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.358", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44110000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44110000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.42160000000000003", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.42160000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.1803", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.1803", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Elec/Mech 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3684", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3684", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.508", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.508", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3198", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3198", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3042", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3042", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3267", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3267", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Storage 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3403", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3403", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Classroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9398", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9398", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Storage 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3746", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3746", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Bridge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Corridor 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4853", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4853", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3446", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3446", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.285", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.285", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12200000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12200000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Shell 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Shell 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Shell 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7729", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7729", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Shell 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2766", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2766", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Kitchen 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5101", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5101", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4295", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4295", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Mechanical 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Kitchen": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3678", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3678", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Kitchen": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6555", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6555", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3257", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3257", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5178", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5178", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.27880000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.27880000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2906", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2906", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.21810000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.21810000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1879", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1879", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2922", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2922", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Storage 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2093", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2093", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Dining": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2916000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2916000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elec/Mech 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3019", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3019", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Void 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Void 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Void 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Void 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Void 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Void 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Void 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Void 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Void 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Void 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Void": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Void": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Void 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Void": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Void 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Void": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Void 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Void": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Void 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Void": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Void 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Void 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Void 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Void 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Void 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Stairs 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.017400000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.017400000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "7 - Electrical 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3505", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3505", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Stairs 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.017400000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.017400000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "8 - Electrical 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3505", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3505", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "P - Stairs 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.249", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.249", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "4 - Elec/Mech 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.24970000000000003", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.24970000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "3 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2321", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2321", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "5 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.24330000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.24330000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.017400000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.017400000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "6 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2434", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2434", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0172", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2907", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2907", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2119", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2119", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elec/Mech 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.24190000000000003", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.24190000000000003", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elec/Mech 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elec/Mech 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5239", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5239", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elec/Mech 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Vestibule": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2873", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2873", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0095", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0095", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Stairs 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0333", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0333", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5854", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5854", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3017", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3017", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6158", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6158", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Lockers": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3959", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3959", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4312", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4312", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5348", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5348", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2624", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2624", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Laundry/Washing": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.24630000000000002", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.24630000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3165", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3165", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2273", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2273", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2864", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2864", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.47700000000000004", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.47700000000000004", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.9363", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.9363", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2411", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2411", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.29430000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.29430000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Workshop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.38260000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.38260000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1671", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1671", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Laundry/Washing 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2872", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2872", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Supply Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2277", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2277", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1432", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1432", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Supply Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3739", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3739", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Supply Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3079", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3079", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3143", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3143", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Mail Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.5336", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.5336", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "G - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + } + }, + "6-4": { + "G - Lockers": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Lounge": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Laundry/Washing": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Corridor": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Workshop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.9", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.9000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Laundry/Washing 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Supply Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Supply Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Supply Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Mail Rm": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "G - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Corridor": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elec/Mech 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elec/Mech 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elec/Mech 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Storage 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elec/Mech 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Corridor 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elec/Mech 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Vestibule": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Dining": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Kitchen 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Stairs 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Restroom 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Elec/Mech 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Shell 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Shell 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Shell 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Shell 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "3 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Elec/Mech 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Office 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Lockers": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Classroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Classroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Corridor": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Exam Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Elec/Mech 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Elec/Mech 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Corridor 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Classroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Storage 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Bridge": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "5 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "5 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "5 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "5 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Elec/Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Elev Lobby 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Elec/Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Stairs 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Laundry": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Storage 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Electrical 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Electrical 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Electrical 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Stairs 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Storage 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Laundry": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Electrical 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Storage 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Electrical 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Lounge 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Electrical 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "P - Generator Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "P - Stairs 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "P - Mechanical 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "P - Mechanical 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "P - Mechanical 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "P - Mechanical 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1 - Kitchen": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2 - Kitchen": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Patient Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Supply Rm": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Operating Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "2.2", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "2.2000000000000006", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Operating Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "2.2", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "2.2000000000000006", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Operating Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "2.2", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "2.2000000000000006", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Operating Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "2.2", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "2.2000000000000006", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Corridor": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Nurses Station": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Storage 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Storage 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Corridor 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Storage 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Exam Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Corridor 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Exam Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Restroom 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Corridor 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "3 - Corridor 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Storage": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Office": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Office 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Nurses Station": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Supply Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Storage 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Mail Rm": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Office 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "4 - Storage 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "5 - Core and Shell 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "5 - Core and Shell 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "6 - Lounge": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Seating": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6800000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Elev Lobby": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Open Office": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Supply Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Nurses Station": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Exam Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Supply Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Exam Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Nurses Station 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Conference/Multipurpose": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Patient Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Patient Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Restroom": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Corridor": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Supply Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Laundry/Washing": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Patient Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Patient Rm 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Patient Rm 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "6 - Corridor 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Lounge 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Patient Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Restroom 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Patient Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Patient Rm 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Conference 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Lounge 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Restroom 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Corridor 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Patient Rm 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Patient Rm 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Conference 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Med Supply 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Washing 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Med Supply 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Restroom 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Corridor 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Office 9": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Med Supply 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Med Supply 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Imaging 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Corridor 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.0000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Patient Rm 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Patient Rm 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Lounge 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Restroom 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Patient Rm 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Conference 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Patient Rm 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Patient Rm 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Patient Rm 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Patient Rm 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Exercise": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Lounge 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Conference 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Lounge 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Restroom 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Lounge 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Restroom 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Corridor 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Lab 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Corridor 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Med Supply 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Med Supply 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Conference 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Med Supply 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Exam 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Med Supply 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Med Supply 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Restroom 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Corridor 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Corridor 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Med Supply 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Exam 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Restroom 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 9": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Patient Rm 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.7", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.7000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Lounge 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "8 - Office 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "7 - Void 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "7 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "7 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "7 - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "7 - Void 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "7 - Void 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "7 - Void 7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "8 - Void 8": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1 - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Void 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "3 - Void": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "3 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "3 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "3 - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "3 - Void 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "4 - Void": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "4 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "4 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "4 - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "4 - Void 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "5 - Void": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "5 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "5 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "5 - Void 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "6 - Void": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "6 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "6 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "6 - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "6 - Void 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "6 - Void 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "G - Void 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1 - Void": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Void": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2 - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "P - Void 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "P - Void 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "P - Void 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "P - Void 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "P - Void 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "P - Void 7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "P - Void 8": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + } + }, + "6-5": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Default Building missing:building_open_schedule", + "BASELINE_0_MISSING_DATA": "id:Default Building missing:building_open_schedule" + } + } + }, + "6-6": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "ids_for_interior_lighting_instances_with_daylighting_control", + "value": "[]" + } + ], + "messages": "" + } + }, + "6-7": { + "3 - Patient Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Elec/Mech 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Exam Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Lockers zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Corridor 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Corridor 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "5 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "5 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "5 - Core and Shell 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "5 - Core and Shell 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Patient Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Seating zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Open Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Supply Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Laundry/Washing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Elev Lobby 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Exam Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Supply Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Exam Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Nurses Station 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Conference/Multipurpose zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Patient Rm 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Lounge 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Restroom 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Office 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Laundry zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Conference 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Lounge 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Restroom 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Patient Rm 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Storage 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Conference 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Med Supply 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Washing 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Med Supply 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Electrical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Restroom 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Office 9 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Med Supply 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Electrical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Med Supply 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Imaging 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Patient Rm 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Lounge 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Restroom 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Office 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Conference 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Storage 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Patient Rm 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Exercise zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Conference 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Lounge 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Lounge 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Laundry zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Electrical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Lab 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Med Supply 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Office 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Med Supply 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Conference 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Lounge 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Electrical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Med Supply 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Exam 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Med Supply 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Office 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Med Supply 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Restroom 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Med Supply 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Office 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Exam 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Restroom 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Office 9 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Operating Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Operating Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Operating Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Operating Rm 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Corridor 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Nurses Station zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Mail Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Generator Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Mechanical 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Mechanical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Mechanical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Classroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Conference/Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Classroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Exam Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Elec/Mech 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Office 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Classroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Storage 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Bridge zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "1 - Corridor 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "2 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Shell 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Shell 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Shell 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "2 - Shell 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Kitchen 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "1 - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Mechanical 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Kitchen zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Kitchen zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "1 - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Storage 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Storage 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Dining zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "1 - Elec/Mech 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Void 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Void 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Void 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Void 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Void 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Void 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Void 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Void 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Void 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Void 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Void 7 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Void 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Void 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Void 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Void 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Void 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "5 - Void zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "5 - Void 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "5 - Void 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "5 - Void 6 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "6 - Void zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "6 - Void 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "6 - Void 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Void 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Void 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Void 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "7 - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "7 - Electrical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "8 - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "8 - Electrical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "P - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "4 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "4 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "3 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "3 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "5 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "5 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "6 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "6 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Elec/Mech 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Elec/Mech 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Elec/Mech 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Vestibule zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "2 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "2 - Stairs 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "2 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1 - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Lockers zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Restroom zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Lounge zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Laundry/Washing zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Office zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Office 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Office 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Lounge 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Restroom 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Office 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Workshop zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Storage 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Laundry/Washing 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Supply Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Storage 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Supply Rm 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Supply Rm 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Restroom 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Mail Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "G - Elev Lobby zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + } + }, + "6-8": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "6-9": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "10-1": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be only one HVAC system serving each zone in the baseline RMD." + } + }, + "10-7": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "10-14": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "10-15": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be one system serving each zone in the baseline RMD." + } + }, + "11-1": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "proposed_user_comparison", + "value": "[]" + }, + { + "variable": "proposed_baseline_comparison", + "value": "[\"'DEFAULT-DHW' was not found in the Proposed model. Because there are no SWH loads in the User model, we are expecting the Proposed and Baseline systems to match.\"]" + } + ], + "messages": "'DEFAULT-DHW' was not found in the Proposed model. Because there are no SWH loads in the User model, we are expecting the Proposed and Baseline systems to match." + } + }, + "11-6": { + "DEFAULT-DHW": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "piping_losses_modeled_b", + "value": "[False]" + } + ], + "messages": "" + } + }, + "11-7": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_equipment:DW Heater 1 is missing tank" + } + }, + "11-8": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_equipment:DW Heater 1 is missing tank" + } + }, + "11-9": { + "HOSPITAL_AND_OUTPATIENT_SURGERY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Check that the baseline Service Water Heating System for Building Area Type is sized according to ASHRAE Standard 90.1 2019, Section 7.4.1." + } + }, + "11-10": { + "DW Heater 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:DW Heater 1 missing:tank" + } + } + }, + "11-11": { + "HOSPITAL": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "swh_use_loads_b", + "value": "0.0" + } + ], + "messages": "" + } + }, + "11-12": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "buildings:Default Building is missing building_open_schedule" + } + }, + "11-13": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "is_applicable", + "value": "False" + }, + { + "variable": "service_water_heating_btu_per_sf_per_year", + "value": "0.0", + "unit": "Btu/ft2" + } + ], + "messages": "" + } + }, + "11-14": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Search data referenced in $.service_water_heating_uses[*] with key:value id:DEFAULT-DHW Load1 returned 0 results instead of one" + } + }, + "11-15": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "List path $.service_water_heating_uses[*] in rule None is either incorrect or has no data." + } + }, + "11-16": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "List path $.service_water_heating_equipment[*] in rule None is either incorrect or has no data." + } + }, + "11-17": { + "HOSPITAL": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "has_swh_loads", + "value": "False" + }, + { + "variable": "swh_bat", + "value": "HOSPITAL_AND_OUTPATIENT_SURGERY" + } + ], + "messages": "There are no SWH loads simulated in this building segment. SWH loads are expected for building area type: HOSPITAL_AND_OUTPATIENT_SURGERY" + } + }, + "12-1": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "reduced_misc_equipment_power", + "value": "[]" + }, + { + "variable": "unexpected_misc_equipment_power", + "value": "[]" + }, + { + "variable": "compliance_path", + "value": "None" + } + ], + "messages": "The proposed building miscellaneous equipment load is less than the baseline, which is only permitted when the model is being used to quantify performance that exceeds the requirements of Standard 90.1." + } + }, + "12-2": { + "G - Lockers MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Restroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Lounge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Laundry/Washing MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LAUNDRY_WASHING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Office 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Office 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Lounge 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Restroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Office 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Workshop MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "WORKSHOP" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Storage 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Laundry/Washing 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LAUNDRY_WASHING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Supply Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Storage 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Supply Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Supply Rm 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Restroom 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Mail Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Elev Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Lounge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Restroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Storage 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elec/Mech MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Storage 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Storage 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elec/Mech 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Office 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elec/Mech 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elec/Mech 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elec/Mech 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Storage 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elec/Mech 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Office 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Corridor 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elec/Mech 8 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Office 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Elev Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Vestibule MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Dining MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DINING_AREA_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Elec/Mech MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Kitchen 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "FOOD_PREPARATION_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Lounge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Restroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Stairs 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Restroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Elec/Mech 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Elev Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Shell 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Shell 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Shell 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Shell 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Office 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Office 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Office 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Office 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Office 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Lounge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Elec/Mech MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Elev Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Elec/Mech 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Elec/Mech 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Office 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Conference/Multipurpose 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Lockers MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Lounge 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Lounge 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Classroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_ALL_OTHER" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Classroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_ALL_OTHER" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Lounge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Elec/Mech MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Elec/Mech 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Conference/Multipurpose 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Exam Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_EXAM_TREATMENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Storage 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Office 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Office 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Lounge 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Elec/Mech 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Elec/Mech 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Storage 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Corridor 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Office 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Classroom 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_ALL_OTHER" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Storage 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Elev Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Bridge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Elec/Mech MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Elev Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Elec/Mech 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Elec/Mech MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Storage 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Storage 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Elev Lobby 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Elec/Mech 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Stairs 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Laundry MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LAUNDRY_WASHING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Storage 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Electrical 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Storage 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Storage 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Electrical 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Electrical 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Stairs 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Storage 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Laundry MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LAUNDRY_WASHING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Electrical 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Storage 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Storage 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Storage 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Storage 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Electrical 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Lounge 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Electrical 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Generator Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Stairs 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Mechanical 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Mechanical 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Mechanical 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Mechanical 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Kitchen MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "FOOD_PREPARATION_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Kitchen MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "FOOD_PREPARATION_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Patient Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Supply Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Operating Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_OPERATING_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Operating Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_OPERATING_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Patient Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Operating Rm 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_OPERATING_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Operating Rm 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_OPERATING_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Restroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Nurses Station MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_NURSES_STATION" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Storage 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Restroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Storage 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Corridor 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Storage 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Exam Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_EXAM_TREATMENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Corridor 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Restroom 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Restroom 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Exam Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_EXAM_TREATMENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Restroom 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Corridor 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Corridor 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Restroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Office 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Nurses Station MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_NURSES_STATION" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Supply Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Storage 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Mail Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Office 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Restroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Storage 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Core and Shell 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Core and Shell 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Lounge MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Seating MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "AUDIENCE_SEATING_AREA_ALL_OTHER" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Elev Lobby MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ELEVATOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Open Office MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_OPEN_PLAN" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Lounge 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Supply Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Nurses Station MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_NURSES_STATION" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Exam Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_EXAM_TREATMENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Supply Rm 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Exam Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_EXAM_TREATMENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Lounge 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Nurses Station 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_NURSES_STATION" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Conference/Multipurpose MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Patient Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Patient Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Patient Rm 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Restroom MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Restroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Supply Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Office 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Restroom 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Laundry/Washing MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LAUNDRY_WASHING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Restroom 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Patient Rm 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Patient Rm 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Patient Rm 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Corridor 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Lounge 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Patient Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Patient Rm 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Restroom 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Patient Rm 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Patient Rm 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Restroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Restroom 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Lounge 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Conference 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Restroom 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Lounge 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Lounge 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Restroom 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Corridor 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Patient Rm 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Patient Rm 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Conference 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Med Supply 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Washing 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LAUNDRY_WASHING_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Med Supply 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Restroom 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Corridor 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 8 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Office 9 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Med Supply 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Med Supply 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Imaging 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Corridor 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_HOSPITAL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Patient Rm 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Patient Rm 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Lounge 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Restroom 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Patient Rm 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Conference 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Patient Rm 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Patient Rm 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Patient Rm 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Patient Rm 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Exercise MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "GYMNASIUM_FITNESS_CENTER_EXERCISE_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Lounge 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Conference 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Lounge 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Restroom 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Lounge 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Restroom 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Corridor 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Lab 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LABORATORY_EXCEPT_IN_OR_AS_A_CLASSROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Med Supply 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Med Supply 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Conference 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Med Supply 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Exam 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_EXAM_TREATMENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Med Supply 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Med Supply 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_MEDICAL_SUPPLY_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Restroom 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Corridor 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Corridor 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Med Supply 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 8 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Exam 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_EXAM_TREATMENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Restroom 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "RESTROOM_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 9 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Patient Rm 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "HEALTHCARE_FACILITY_PATIENT_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Lounge 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOUNGE_BREAKROOM_HEALTH_CARE_FACILITY" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Office 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Void 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Void 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Void 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "7 - Void 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "8 - Void 8 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Void 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Void MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "3 - Void 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Void MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "4 - Void 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Void MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "5 - Void 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Void MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Void 5 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "6 - Void 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "G - Void 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Void MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Void MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2 - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Void 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Void 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Void 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Void 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Void 6 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Void 7 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "P - Void 8 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + } + }, + "12-3": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "spaces:5 - Core and Shell 1 is missing lighting_space_type" + } + }, + "12-4": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-1": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-2": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-3": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-4": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-5": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-6": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-7": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "18-1": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "lighting_multiplier_schedule:T24 24hr LTG is missing hourly_cooling_design_day" + } + }, + "18-2": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "18-3": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "lighting_multiplier_schedule:T24 24hr LTG is missing hourly_cooling_design_day" + } + }, + "19-1": { + "G - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "1 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "2 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "3 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "4 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "5 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "6 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "7 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "8 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "P - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + } + }, + "19-2": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_sized_using_coincident_load", + "value": "True" + } + ], + "messages": "" + }, + "PCHW Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_sized_using_coincident_load", + "value": "True" + } + ], + "messages": "" + }, + "Condenser Water Loop": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "is_sized_using_coincident_load", + "value": "False" + } + ], + "messages": "" + } + }, + "19-3": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-4": { + "G - Lockers zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Laundry/Washing zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Workshop zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Laundry/Washing 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Supply Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Supply Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Mail Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elec/Mech 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elec/Mech 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elec/Mech 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Storage 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elec/Mech 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elec/Mech 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Vestibule zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Dining zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Kitchen 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Stairs 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:2 - Restroom 2 zn Infil is missing multiplier_schedule" + }, + "2 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:2 - Elec/Mech 2 zn Infil is missing multiplier_schedule" + }, + "2 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Shell 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Shell 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Shell 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Shell 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Conference/Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Elec/Mech 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Office 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Conference/Multipurpose 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Lockers zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Classroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Conference/Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Classroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Conference/Multipurpose 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Exam Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Elec/Mech 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Elec/Mech 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Classroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Storage 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Bridge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Elev Lobby 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "7 - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Stairs 1 zn Infil is missing multiplier_schedule" + }, + "7 - Laundry zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Laundry zn Infil is missing multiplier_schedule" + }, + "7 - Storage 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 1 zn Infil is missing multiplier_schedule" + }, + "7 - Electrical 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Electrical 1 zn Infil is missing multiplier_schedule" + }, + "7 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 2 zn Infil is missing multiplier_schedule" + }, + "7 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 3 zn Infil is missing multiplier_schedule" + }, + "7 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 4 zn Infil is missing multiplier_schedule" + }, + "7 - Electrical 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Electrical 2 zn Infil is missing multiplier_schedule" + }, + "7 - Electrical 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Electrical 3 zn Infil is missing multiplier_schedule" + }, + "8 - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Stairs 1 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 1 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 2 zn Infil is missing multiplier_schedule" + }, + "8 - Laundry zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Laundry zn Infil is missing multiplier_schedule" + }, + "8 - Electrical 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Electrical 1 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 3 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 4 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 5 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 6 zn Infil is missing multiplier_schedule" + }, + "8 - Electrical 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Electrical 2 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 6 zn Infil is missing multiplier_schedule" + }, + "8 - Electrical 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Electrical 3 zn Infil is missing multiplier_schedule" + }, + "P - Generator Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Generator Rm zn Infil is missing multiplier_schedule" + }, + "P - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Stairs 1 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 1 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 2 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 3 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 4 zn Infil is missing multiplier_schedule" + }, + "1 - Kitchen zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Kitchen zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Patient Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Operating Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Operating Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Operating Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Operating Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Nurses Station zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Exam Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Corridor 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Exam Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Restroom 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Corridor 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Corridor 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Nurses Station zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Mail Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Storage 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Core and Shell 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Core and Shell 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Seating zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Open Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Nurses Station zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Exam Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Supply Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Exam Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Nurses Station 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Conference/Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Patient Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Supply Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Laundry/Washing zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "7 - Lounge 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 1 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 2 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 3 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 1 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 4 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 5 zn Infil is missing multiplier_schedule" + }, + "7 - Office 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 1 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 2 zn Infil is missing multiplier_schedule" + }, + "7 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 2 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 3 zn Infil is missing multiplier_schedule" + }, + "7 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 2 zn Infil is missing multiplier_schedule" + }, + "7 - Conference 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Conference 1 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 4 zn Infil is missing multiplier_schedule" + }, + "7 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 3 zn Infil is missing multiplier_schedule" + }, + "7 - Lounge 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 4 zn Infil is missing multiplier_schedule" + }, + "7 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 3 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 5 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 1 zn Infil is missing multiplier_schedule" + }, + "7 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 4 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 6 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 7 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 2 zn Infil is missing multiplier_schedule" + }, + "7 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 5 zn Infil is missing multiplier_schedule" + }, + "7 - Conference 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Conference 2 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 1 zn Infil is missing multiplier_schedule" + }, + "7 - Washing 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Washing 1 zn Infil is missing multiplier_schedule" + }, + "7 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 6 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 2 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 6 zn Infil is missing multiplier_schedule" + }, + "7 - Office 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 7 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 3 zn Infil is missing multiplier_schedule" + }, + "7 - Office 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 8 zn Infil is missing multiplier_schedule" + }, + "7 - Office 9 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 9 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 3 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 4 zn Infil is missing multiplier_schedule" + }, + "7 - Imaging 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Imaging 1 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 4 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 1 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 2 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 2 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 1 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 3 zn Infil is missing multiplier_schedule" + }, + "8 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 2 zn Infil is missing multiplier_schedule" + }, + "8 - Conference 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Conference 1 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 4 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 5 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 6 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 7 zn Infil is missing multiplier_schedule" + }, + "8 - Exercise zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Exercise zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 3 zn Infil is missing multiplier_schedule" + }, + "8 - Conference 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Conference 2 zn Infil is missing multiplier_schedule" + }, + "8 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 3 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 4 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 2 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 5 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 3 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 1 zn Infil is missing multiplier_schedule" + }, + "8 - Lab 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lab 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 4 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 2 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 5 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 2 zn Infil is missing multiplier_schedule" + }, + "8 - Conference 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Conference 3 zn Infil is missing multiplier_schedule" + }, + "8 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 6 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 3 zn Infil is missing multiplier_schedule" + }, + "8 - Exam 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Exam 1 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 4 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 5 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 4 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 3 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 4 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 6 zn Infil is missing multiplier_schedule" + }, + "8 - Office 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 8 zn Infil is missing multiplier_schedule" + }, + "8 - Exam 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Exam 2 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 5 zn Infil is missing multiplier_schedule" + }, + "8 - Office 9 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 9 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 1 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 7 zn Infil is missing multiplier_schedule" + }, + "7 - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 1 zn Infil is missing multiplier_schedule" + }, + "7 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 2 zn Infil is missing multiplier_schedule" + }, + "7 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 3 zn Infil is missing multiplier_schedule" + }, + "7 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 4 zn Infil is missing multiplier_schedule" + }, + "7 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 5 zn Infil is missing multiplier_schedule" + }, + "7 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 6 zn Infil is missing multiplier_schedule" + }, + "7 - Void 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 7 zn Infil is missing multiplier_schedule" + }, + "8 - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 1 zn Infil is missing multiplier_schedule" + }, + "8 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 2 zn Infil is missing multiplier_schedule" + }, + "8 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 3 zn Infil is missing multiplier_schedule" + }, + "8 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 4 zn Infil is missing multiplier_schedule" + }, + "8 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 5 zn Infil is missing multiplier_schedule" + }, + "8 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 6 zn Infil is missing multiplier_schedule" + }, + "8 - Void 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 7 zn Infil is missing multiplier_schedule" + }, + "8 - Void 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 8 zn Infil is missing multiplier_schedule" + }, + "1 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "3 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "4 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "5 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "6 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "G - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "1 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "2 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Infiltration Sch is missing hourly_cooling_design_day" + }, + "P - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 1 zn Infil is missing multiplier_schedule" + }, + "P - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 2 zn Infil is missing multiplier_schedule" + }, + "P - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 3 zn Infil is missing multiplier_schedule" + }, + "P - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 4 zn Infil is missing multiplier_schedule" + }, + "P - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 6 zn Infil is missing multiplier_schedule" + }, + "P - Void 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 7 zn Infil is missing multiplier_schedule" + }, + "P - Void 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 8 zn Infil is missing multiplier_schedule" + } + }, + "19-5": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "unmet_load_hours_heating_p", + "value": "97.0", + "unit": "hr" + }, + { + "variable": "unmet_load_hours_cooling_p", + "value": "112.0", + "unit": "hr" + }, + { + "variable": "coincident_unmet_load_hours_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-6": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:Sample 3 Output missing:unmet_load_hours" + } + } + }, + "19-7": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "zones:G - Lockers zn is missing air_distribution_effectiveness" + } + }, + "19-8": { + "G - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "2650.5509633965994", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "6.442292075705024", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "1 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "1353.7921797506715", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "3.979268899375927", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "2 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "2366.418259684666", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "22.475880149347383", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "3 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "1448.8479376532123", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "6.798974683062935", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "4 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "3504.050544021302", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "6.655136876751157", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "5 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "91.0532815624174", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "3.715448051105659", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "6 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "502.293943678742", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "4.198854033554555", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "7 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "950.5562707725767", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "5.251521500870503", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "8 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "584.3419957204023", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "5.254782768334007", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "P - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "1058.6968870053533", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "5.059099169090198", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "5092.5667022597045", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "10.00000031661301", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "3202.0322902983753", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "9.999988240721429", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "4325.531209895562", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "7.207574734881798", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "4527.649305325758", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "6.906834949373331", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "2320.257155583822", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "4.99999909891016", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "6655.895080175484", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "6.780196122880119", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "6556.837182539515", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "5.123691931614099", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "7108.159878801205", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "5.126233658592005", + "unit": "people/kft2" + } + ], + "messages": "" + } + }, + "19-9": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-10": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-11": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-12": { + "G - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "1 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "2 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "3 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "4 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "5 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "6 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "7 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "8 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "P - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + } + }, + "19-13": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-14": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-15": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-16": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-17": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-18": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-19": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-20": { + "G - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "4270.766258239747", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "2571.11668586731", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "4575.246925603528", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "2266.6360185035287", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for G - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 15611.388335948708 british_thermal_unit / hour, 7734.082045514838 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "1 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "4346.577644348145", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "2176.4850616455083", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "4695.345617239475", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "1827.717088754178", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 1 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 16021.18202452013 british_thermal_unit / hour, 6236.428700955248 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "2 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "8145.538330078127", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "4080.884456634522", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "8529.450681947314", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "3696.972104765336", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 2 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 29103.68971411027 british_thermal_unit / hour, 12614.59067305926 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "3 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "3401.0832309722905", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "2045.9365844726565", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "3703.8401143056385", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "1743.1797011393087", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 3 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 12638.02529107488 british_thermal_unit / hour, 5947.975201412542 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "4 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "9573.961257934572", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "4875.449657440186", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "9421.227430081168", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "5028.18348529359", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 4 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 32146.557858817163 british_thermal_unit / hour, 17156.87181254542 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "5 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "403.5905301570893", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "242.84817278385165", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "445.3650641563697", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "201.07363878457124", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 5 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 1519.6484650700352 british_thermal_unit / hour, 686.0916383817129 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "6 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "1016.4160728454591", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "530.142903327942", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "1052.7322323151957", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "493.82674385820565", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 6 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 3592.070976644561 british_thermal_unit / hour, 1685.0065568932268 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "7 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "1281.2647819519045", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "641.4113640785218", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "1307.6292692248073", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "615.0468768056191", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 7 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 4461.815646950784 british_thermal_unit / hour, 2098.626761518089 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "8 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "1067.6609277725222", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "534.4794988632203", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "1089.8821501555744", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "512.2582764801682", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 8 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 3718.83174026788 british_thermal_unit / hour, 1747.8975479297833 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "P - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "10041.157722473146", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "5189.871311187745", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "9931.203622674013", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "5299.8254109868785", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for P - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 33886.66861439245 british_thermal_unit / hour, 18083.75240703125 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "1 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "5655.096530914308", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "5655.096530914308", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "3798.5544204711923", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "3798.5544204711923", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "22830.08003234864", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "11439.188957214357", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "22908.319666186686", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "11360.94932337631", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 3.170 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 78166.42035898764 british_thermal_unit / hour, 38765.16276307107 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "4.170 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "17866.510391235355", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "8952.843666076662", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "15066.508248172651", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "11752.845809139362", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 4.170 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 51409.052878161485 british_thermal_unit / hour, 40102.368891226346 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "5.170 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "21542.581558227543", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "12960.3328704834", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "23450.031772594277", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "11052.882656116664", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 5.170 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 80014.818532229 british_thermal_unit / hour, 37713.995808772226 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "6.170 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "20841.186523437504", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "10438.54141235352", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "21259.381303801612", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "10020.346631989409", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 6.170 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 72540.00990818099 british_thermal_unit / hour, 34190.837145290745 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "7.170 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "18559.562683105472", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "9295.764923095705", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "18931.975116220474", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "8923.3524899807", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 7.170 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 64598.57146766969 british_thermal_unit / hour, 30447.738284916177 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "8.170 - Sys7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "20984.25483703614", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "10510.197639465334", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "21405.319621923103", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "10089.132854578369", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for 8.170 - Sys7.The expected modeled baseline supply, return, exhaust, and relief kW is 73037.97204975202 british_thermal_unit / hour, 34425.545446385906 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + } + }, + "19-21": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-22": { + "G - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-23": { + "G - Lockers zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Laundry/Washing zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Workshop zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Laundry/Washing 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Supply Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Supply Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Mail Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elec/Mech 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elec/Mech 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elec/Mech 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Storage 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elec/Mech 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elec/Mech 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Vestibule zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Dining zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Kitchen 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Stairs 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:2 - Restroom 2 zn Infil is missing multiplier_schedule" + }, + "2 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:2 - Elec/Mech 2 zn Infil is missing multiplier_schedule" + }, + "2 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Shell 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Shell 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Shell 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Shell 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Conference/Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Elec/Mech 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Office 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Conference/Multipurpose 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Lockers zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Classroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Conference/Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Classroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Conference/Multipurpose 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Exam Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Elec/Mech 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Elec/Mech 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Classroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Storage 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Bridge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Elec/Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Elev Lobby 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Elec/Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "7 - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Stairs 1 zn Infil is missing multiplier_schedule" + }, + "7 - Laundry zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Laundry zn Infil is missing multiplier_schedule" + }, + "7 - Storage 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 1 zn Infil is missing multiplier_schedule" + }, + "7 - Electrical 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Electrical 1 zn Infil is missing multiplier_schedule" + }, + "7 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 2 zn Infil is missing multiplier_schedule" + }, + "7 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 3 zn Infil is missing multiplier_schedule" + }, + "7 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Storage 4 zn Infil is missing multiplier_schedule" + }, + "7 - Electrical 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Electrical 2 zn Infil is missing multiplier_schedule" + }, + "7 - Electrical 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Electrical 3 zn Infil is missing multiplier_schedule" + }, + "8 - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Stairs 1 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 1 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 2 zn Infil is missing multiplier_schedule" + }, + "8 - Laundry zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Laundry zn Infil is missing multiplier_schedule" + }, + "8 - Electrical 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Electrical 1 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 3 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 4 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 5 zn Infil is missing multiplier_schedule" + }, + "8 - Storage 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Storage 6 zn Infil is missing multiplier_schedule" + }, + "8 - Electrical 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Electrical 2 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 6 zn Infil is missing multiplier_schedule" + }, + "8 - Electrical 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Electrical 3 zn Infil is missing multiplier_schedule" + }, + "P - Generator Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Generator Rm zn Infil is missing multiplier_schedule" + }, + "P - Stairs 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Stairs 1 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 1 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 2 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 3 zn Infil is missing multiplier_schedule" + }, + "P - Mechanical 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Mechanical 4 zn Infil is missing multiplier_schedule" + }, + "1 - Kitchen zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Kitchen zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Patient Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Operating Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Operating Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Operating Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Operating Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Nurses Station zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Storage 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Storage 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Exam Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Corridor 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Exam Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Restroom 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Corridor 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Corridor 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Nurses Station zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Storage 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Mail Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Storage 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Core and Shell 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Core and Shell 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Lounge zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Seating zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Elev Lobby zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Open Office zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Supply Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Nurses Station zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Exam Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Supply Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Exam Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Nurses Station 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Conference/Multipurpose zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Patient Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Restroom zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Supply Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Laundry/Washing zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "7 - Lounge 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 1 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 2 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 3 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 1 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 4 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 5 zn Infil is missing multiplier_schedule" + }, + "7 - Office 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 1 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 2 zn Infil is missing multiplier_schedule" + }, + "7 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 2 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 3 zn Infil is missing multiplier_schedule" + }, + "7 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 2 zn Infil is missing multiplier_schedule" + }, + "7 - Conference 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Conference 1 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 4 zn Infil is missing multiplier_schedule" + }, + "7 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 3 zn Infil is missing multiplier_schedule" + }, + "7 - Lounge 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Lounge 4 zn Infil is missing multiplier_schedule" + }, + "7 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 3 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 5 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 1 zn Infil is missing multiplier_schedule" + }, + "7 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 4 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 6 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 7 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 2 zn Infil is missing multiplier_schedule" + }, + "7 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 5 zn Infil is missing multiplier_schedule" + }, + "7 - Conference 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Conference 2 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 1 zn Infil is missing multiplier_schedule" + }, + "7 - Washing 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Washing 1 zn Infil is missing multiplier_schedule" + }, + "7 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 6 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 2 zn Infil is missing multiplier_schedule" + }, + "7 - Restroom 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Restroom 6 zn Infil is missing multiplier_schedule" + }, + "7 - Office 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 7 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 3 zn Infil is missing multiplier_schedule" + }, + "7 - Office 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 8 zn Infil is missing multiplier_schedule" + }, + "7 - Office 9 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Office 9 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 3 zn Infil is missing multiplier_schedule" + }, + "7 - Med Supply 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Med Supply 4 zn Infil is missing multiplier_schedule" + }, + "7 - Imaging 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Imaging 1 zn Infil is missing multiplier_schedule" + }, + "7 - Corridor 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Corridor 4 zn Infil is missing multiplier_schedule" + }, + "7 - Patient Rm 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Patient Rm 1 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 2 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 2 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 1 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 3 zn Infil is missing multiplier_schedule" + }, + "8 - Office 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 2 zn Infil is missing multiplier_schedule" + }, + "8 - Conference 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Conference 1 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 4 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 5 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 6 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 7 zn Infil is missing multiplier_schedule" + }, + "8 - Exercise zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Exercise zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 3 zn Infil is missing multiplier_schedule" + }, + "8 - Conference 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Conference 2 zn Infil is missing multiplier_schedule" + }, + "8 - Office 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 3 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 4 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 2 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 5 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 3 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 1 zn Infil is missing multiplier_schedule" + }, + "8 - Lab 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lab 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 4 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 2 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 5 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 2 zn Infil is missing multiplier_schedule" + }, + "8 - Conference 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Conference 3 zn Infil is missing multiplier_schedule" + }, + "8 - Office 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 6 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 3 zn Infil is missing multiplier_schedule" + }, + "8 - Exam 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Exam 1 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 4 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 5 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 4 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 3 zn Infil is missing multiplier_schedule" + }, + "8 - Corridor 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Corridor 4 zn Infil is missing multiplier_schedule" + }, + "8 - Med Supply 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Med Supply 6 zn Infil is missing multiplier_schedule" + }, + "8 - Office 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 8 zn Infil is missing multiplier_schedule" + }, + "8 - Exam 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Exam 2 zn Infil is missing multiplier_schedule" + }, + "8 - Restroom 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Restroom 5 zn Infil is missing multiplier_schedule" + }, + "8 - Office 9 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 9 zn Infil is missing multiplier_schedule" + }, + "8 - Patient Rm 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Patient Rm 1 zn Infil is missing multiplier_schedule" + }, + "8 - Lounge 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Lounge 1 zn Infil is missing multiplier_schedule" + }, + "8 - Office 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Office 7 zn Infil is missing multiplier_schedule" + }, + "7 - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 1 zn Infil is missing multiplier_schedule" + }, + "7 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 2 zn Infil is missing multiplier_schedule" + }, + "7 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 3 zn Infil is missing multiplier_schedule" + }, + "7 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 4 zn Infil is missing multiplier_schedule" + }, + "7 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 5 zn Infil is missing multiplier_schedule" + }, + "7 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 6 zn Infil is missing multiplier_schedule" + }, + "7 - Void 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:7 - Void 7 zn Infil is missing multiplier_schedule" + }, + "8 - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 1 zn Infil is missing multiplier_schedule" + }, + "8 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 2 zn Infil is missing multiplier_schedule" + }, + "8 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 3 zn Infil is missing multiplier_schedule" + }, + "8 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 4 zn Infil is missing multiplier_schedule" + }, + "8 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 5 zn Infil is missing multiplier_schedule" + }, + "8 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 6 zn Infil is missing multiplier_schedule" + }, + "8 - Void 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 7 zn Infil is missing multiplier_schedule" + }, + "8 - Void 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:8 - Void 8 zn Infil is missing multiplier_schedule" + }, + "1 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "3 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "4 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "5 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Void 5 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "6 - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "G - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Void zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2 - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "P - Void 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 1 zn Infil is missing multiplier_schedule" + }, + "P - Void 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 2 zn Infil is missing multiplier_schedule" + }, + "P - Void 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 3 zn Infil is missing multiplier_schedule" + }, + "P - Void 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 4 zn Infil is missing multiplier_schedule" + }, + "P - Void 6 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 6 zn Infil is missing multiplier_schedule" + }, + "P - Void 7 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 7 zn Infil is missing multiplier_schedule" + }, + "P - Void 8 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "infiltration:P - Void 8 zn Infil is missing multiplier_schedule" + } + }, + "19-24": { + "AHU-1,2,3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27485.69957214757", + "unit": "cfm" + } + ], + "messages": "" + }, + "AHU-4/5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1670.977969439642", + "unit": "cfm" + } + ], + "messages": "" + }, + "AHU-6/7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "3301.9324823685456", + "unit": "cfm" + } + ], + "messages": "" + }, + "AHU-8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "4768.824922310072", + "unit": "cfm" + } + ], + "messages": "" + }, + "AHU-9": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "7857.598445417883", + "unit": "cfm" + } + ], + "messages": "" + }, + "AHU-10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "3354.963323881268", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "20.13729153592522", + "unit": "cfm" + } + ], + "messages": "" + }, + "[E] AHU - G": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "2967.736700102454", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 7 - Electrical 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "19.924893386229996", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 8 - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "22.988387552652284", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 8 - Electrical 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "15.789537587228892", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - P - Stairs 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "70.27264560490585", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 4 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "12.205360375756756", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 4 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "44.835768553055686", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 3 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "13.057800868644222", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 3 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "42.34457354162828", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 5 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "16.765363414768785", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 5 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "53.69930076947412", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 6 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "11.669339263881682", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 6 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "42.00102607017675", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 1 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "3.4782013673779772", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 1 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "20.54173263043299", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 1 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "53.968175224844344", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 1 - Elec/Mech 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "155.08142430632506", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 1 - Elec/Mech 5 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "21.052716782971856", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 1 - Elec/Mech 6 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "119.16265442250734", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 1 - Elec/Mech 8 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "44.73037497216274", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 2 - Vestibule zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "100.95007492534205", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 2 - Elec/Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "25.564013236465826", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 2 - Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "12.904771349891803", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 2 - Stairs 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "3.9799151731219524", + "unit": "cfm" + } + ], + "messages": "" + }, + "FCU - 2 - Elec/Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "12.456171414204277", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-25": { + "G - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "2650.5509633965994", + "unit": "cfm" + } + ], + "messages": "" + }, + "1 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "1353.7921797506715", + "unit": "cfm" + } + ], + "messages": "" + }, + "2 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "2366.418259684666", + "unit": "cfm" + } + ], + "messages": "" + }, + "3 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "1448.8479376532123", + "unit": "cfm" + } + ], + "messages": "" + }, + "4 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "3504.050544021302", + "unit": "cfm" + } + ], + "messages": "" + }, + "5 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "91.0532815624174", + "unit": "cfm" + } + ], + "messages": "" + }, + "6 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "502.293943678742", + "unit": "cfm" + } + ], + "messages": "" + }, + "7 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "950.5562707725767", + "unit": "cfm" + } + ], + "messages": "" + }, + "8 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "584.3419957204023", + "unit": "cfm" + } + ], + "messages": "" + }, + "P - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "1058.6968870053533", + "unit": "cfm" + } + ], + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "5092.5667022597045", + "unit": "cfm" + } + ], + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "3202.0322902983753", + "unit": "cfm" + } + ], + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "4325.531209895562", + "unit": "cfm" + } + ], + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "4527.649305325758", + "unit": "cfm" + } + ], + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "2320.257155583822", + "unit": "cfm" + } + ], + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "6655.895080175484", + "unit": "cfm" + } + ], + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "6556.837182539515", + "unit": "cfm" + } + ], + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "7108.159878801205", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-26": { + "AHU-1,2,3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-4/5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-6/7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-8": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-9": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "[E] AHU - G": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 7 - Electrical 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Electrical 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - P - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Vestibule zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-27": { + "G - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-28": { + "AHU-1,2,3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-4/5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-6/7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-8": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-9": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "AHU-10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "[E] AHU - G": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 7 - Electrical 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Electrical 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - P - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Vestibule zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-29": { + "G - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-30": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "19-31": { + "AHU-1,2,3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-4/5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-6/7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-8": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-9": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "[E] AHU - G": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 7 - Electrical 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Electrical 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - P - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Vestibule zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-32": { + "G - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-33": { + "AHU-1,2,3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-4/5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-6/7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-8": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-9": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AHU-10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "[E] AHU - G": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 7 - Electrical 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 8 - Electrical 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - P - Stairs 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 4 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 3 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 5 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 6 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 5 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 6 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 1 - Elec/Mech 8 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Vestibule zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Stairs 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "FCU - 2 - Elec/Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-34": { + "G - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-35": { + "G - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "1 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "2 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "3 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "4 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "5 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "6 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "7 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "8 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "P - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "1 - Kitchen - Sys3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "2 - Kitchen - Sys3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "3.170 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "4.170 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "5.170 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "6.170 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "7.170 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "8.170 - Sys7": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + } + }, + "19-36": { + "G - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "P - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2 - Kitchen - Sys3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "3.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "4.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "5.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "6.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "7.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "8.170 - Sys7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-37": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "21-1": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-1 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-2": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-2 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-3": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-4": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-5": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-6": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-7": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-8": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "temperature_reset_type_b", + "value": "OUTSIDE_AIR_RESET" + }, + { + "variable": "design_outdoor_high_for_loop_supply_reset_temperature_b", + "value": "50.000000000000036", + "unit": "F" + }, + { + "variable": "design_outdoor_low_for_loop_supply_reset_temperature_b", + "value": "20.000000000000004", + "unit": "F" + }, + { + "variable": "design_supply_temperature_at_outdoor_high_b", + "value": "150.0", + "unit": "F" + }, + { + "variable": "design_supply_temperature_at_outdoor_low_b", + "value": "180.00000000000006", + "unit": "F" + }, + { + "variable": "required_outdoor_high_for_loop_supply_reset_temperature_b", + "value": "50", + "unit": "F" + }, + { + "variable": "required_outdoor_low_for_loop_supply_reset_temperature_b", + "value": "20", + "unit": "F" + }, + { + "variable": "required_supply_temperature_at_outdoor_high_b", + "value": "150", + "unit": "F" + }, + { + "variable": "required_supply_temperature_at_outdoor_low_b", + "value": "180", + "unit": "F" + } + ], + "messages": "" + } + }, + "21-9": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-10": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-11": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-12": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-13": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-14": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-15": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-16": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-17": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "21-18": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-1": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-2": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-3": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-4": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-5": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-6": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-7": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-8": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-9": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-10": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-11": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-12": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-13": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-14": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-15": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-16": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-17": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-18": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-19": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-20": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-21": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-22": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-23": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-24": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-25": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-26": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-27": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-28": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-29": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-30": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-31": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-32": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-33": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-34": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-35": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-35 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-36": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "22-37": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-37 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-38": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-38 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-39": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-39 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-40": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-41": { + "Sample 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "23-1": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-2": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-3": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-4": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-5": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-6": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-7": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-8": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-9": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-10": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-11": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-12": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-13": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-14": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-15": { + "Sample 3 - Final - 7 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-16": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + }, + "23-17": { + "Sample 3": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC 1 - Kitchen - Sys3 does not match any baseline system type." + } + } +} \ No newline at end of file diff --git a/test/integrated_tests/Sample 3/tmp3h0ic__0.html b/test/integrated_tests/Sample 3/tmp3h0ic__0.html new file mode 100644 index 0000000000..65b556acaa --- /dev/null +++ b/test/integrated_tests/Sample 3/tmp3h0ic__0.html @@ -0,0 +1,22 @@ + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/test/integrated_tests/Sample 4/Sample 4.zip b/test/integrated_tests/Sample 4/Sample 4.zip new file mode 100644 index 0000000000..483fce5207 Binary files /dev/null and b/test/integrated_tests/Sample 4/Sample 4.zip differ diff --git a/test/integrated_tests/Sample 4/expected_outcomes.json b/test/integrated_tests/Sample 4/expected_outcomes.json new file mode 100644 index 0000000000..e7377a19cd --- /dev/null +++ b/test/integrated_tests/Sample 4/expected_outcomes.json @@ -0,0 +1,145816 @@ +{ + "1-1": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `output_bpf_set` value must exist." + } + }, + "1-2": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index` value must exist." + } + }, + "1-3": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index_target` value must exist." + } + }, + "1-4": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `pci_target_set` value must exist." + } + }, + "1-5": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Ruleset expects exactly one PBP value to be used in the project." + } + }, + "1-6": { + "Sample 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_renewable", + "value": "False" + } + ], + "messages": "" + } + }, + "1-7": { + "Sample 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 4-BL in index context does not match the one Sample 4-PR - 16 - Proposed in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0]: data object MULTIFAMILY in index context does not match the one Default Building Segment in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[0].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[2].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].spaces[0].lighting_space_type: index context data: STORAGE_ROOM_LARGE does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[6].spaces[0].lighting_space_type: index context data: STORAGE_ROOM_LARGE does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].spaces[0].lighting_space_type: index context data: STORAGE_ROOM_LARGE does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[9].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[13].thermostat_heating_setpoint_schedule: index context data: EPA Heat Schedule Ann does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[14].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[14].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[16].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[17].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[18].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[19].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[20].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[21].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[26].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[27].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[28].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[29].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[30].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[31].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[35].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[36].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[37].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[38].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[39].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[40].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[44].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[45].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[46].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[47].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[48].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[49].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[53].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[54].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[55].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[56].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[57].spaces[0].lighting_space_type: index context data: WAREHOUSE_STORAGE_AREA_MEDIUM_TO_BULKY_PALLETIZED_ITEMS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[58].spaces[0].lighting_space_type: index context data: LOBBY_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[59].spaces[0].lighting_space_type: index context data: LOBBY_ALL_OTHERS does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[63].spaces[0].lighting_space_type: index context data: SALES_AREA does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[64].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[65].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[65].terminals[0]: data object Unit 128 zn MainTerminal in index context does not match the one Unit 128 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[66].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[66].terminals[0]: data object Unit 135 zn MainTerminal in index context does not match the one Unit 135 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[67].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[67].terminals[0]: data object Unit 201 zn MainTerminal in index context does not match the one Unit 201 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[68].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[68].terminals[0]: data object Unit 203 zn MainTerminal in index context does not match the one Unit 203 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[69].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[69].terminals[0]: data object Unit 218 zn MainTerminal in index context does not match the one Unit 218 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].spaces[0].number_of_occupants: index context data: 0.9815 does not equal to compare context data: 2.583', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].terminals[0]: data object Unit 240 zn MainTerminal in index context does not match the one Unit 240 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[71].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[72].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[72].terminals[0]: data object Unit 340 zn MainTerminal in index context does not match the one Unit 340 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[73].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[74].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[74].terminals[0]: data object Unit 403 zn MainTerminal in index context does not match the one Unit 403 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[75].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[75].terminals[0]: data object Unit 410-411 zn MainTerminal in index context does not match the one Unit 410-411 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[76].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[76].terminals[0]: data object Unit 418 zn MainTerminal in index context does not match the one Unit 418 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[77].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[77].terminals[0]: data object Unit 440 zn MainTerminal in index context does not match the one Unit 440 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[78].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[78].terminals[0]: data object Unit 450 zn MainTerminal in index context does not match the one Unit 450 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[79].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[79].terminals[0]: data object Unit 503 zn MainTerminal in index context does not match the one Unit 503 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].terminals[0]: data object Unit 518 zn MainTerminal in index context does not match the one Unit 518 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[81].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[81].terminals[0]: data object Unit 540 zn MainTerminal in index context does not match the one Unit 540 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[82].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[82].terminals[0]: data object Unit 550 zn MainTerminal in index context does not match the one Unit 550 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[83].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[83].terminals[0]: data object Unit B-114 zn MainTerminal in index context does not match the one Unit B-114 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[84].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[84].terminals[0]: data object Units 104 - 115 zn MainTerminal in index context does not match the one Units 104 - 115 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[85].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[85].terminals[0]: data object Units 111-113 zn MainTerminal in index context does not match the one Units 111-113 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].terminals[0]: data object Units 114-120 zn MainTerminal in index context does not match the one Units 114-120 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[87].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[87].terminals[0]: data object Units 129-134 zn MainTerminal in index context does not match the one Units 129-134 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[88].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[88].terminals[0]: data object Units 202-208 zn MainTerminal in index context does not match the one Units 202-208 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[89].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[89].terminals[0]: data object Units 205-209 zn MainTerminal in index context does not match the one Units 205-209 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[90].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[90].terminals[0]: data object Units 210-211 zn MainTerminal in index context does not match the one Units 210-211 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[91].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[91].terminals[0]: data object Units 212-216 zn MainTerminal in index context does not match the one Units 212-216 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[92].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[92].terminals[0]: data object Units 213-217 zn MainTerminal in index context does not match the one Units 213-217 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[93].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[93].terminals[0]: data object Units 219-227 zn MainTerminal in index context does not match the one Units 219-227 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[94].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[94].terminals[0]: data object Units 220-229 zn MainTerminal in index context does not match the one Units 220-229 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[95].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[95].terminals[0]: data object Units 231-239 zn MainTerminal in index context does not match the one Units 231-239 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[96].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[96].terminals[0]: data object Units 241-246 zn MainTerminal in index context does not match the one Units 241-246 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[97].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[97].terminals[0]: data object Units 247-248 zn MainTerminal in index context does not match the one Units 247-248 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[98].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[98].terminals[0]: data object Units 303 zn MainTerminal in index context does not match the one Units 303 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[99].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[99].terminals[0]: data object Units 305-309 zn MainTerminal in index context does not match the one Units 305-309 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[100].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[100].terminals[0]: data object Units 308-349 zn MainTerminal in index context does not match the one Units 308-349 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[101].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[102].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[102].terminals[0]: data object Units 312-316 zn MainTerminal in index context does not match the one Units 312-316 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[103].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[104].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[104].terminals[0]: data object Units 319-327 zn MainTerminal in index context does not match the one Units 319-327 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[105].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[105].terminals[0]: data object Units 320-330 zn MainTerminal in index context does not match the one Units 320-330 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[106].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[106].terminals[0]: data object Units 331-339 zn MainTerminal in index context does not match the one Units 331-339 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[107].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[107].terminals[0]: data object Units 342-346 zn MainTerminal in index context does not match the one Units 342-346 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[108].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[108].terminals[0]: data object Units 347-348 zn MainTerminal in index context does not match the one Units 347-348 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[109].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[109].terminals[0]: data object Units 404-409 zn MainTerminal in index context does not match the one Units 404-409 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[110].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[110].terminals[0]: data object Units 408-449 zn MainTerminal in index context does not match the one Units 408-449 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[111].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[111].terminals[0]: data object Units 412-416 zn MainTerminal in index context does not match the one Units 412-416 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[112].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[112].terminals[0]: data object Units 413-417 zn MainTerminal in index context does not match the one Units 413-417 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[113].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[113].terminals[0]: data object Units 419-427 zn MainTerminal in index context does not match the one Units 419-427 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[114].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[114].terminals[0]: data object Units 420-430 zn MainTerminal in index context does not match the one Units 420-430 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[115].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[115].terminals[0]: data object Units 431-439 zn MainTerminal in index context does not match the one Units 431-439 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[116].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[116].terminals[0]: data object Units 442-446 zn MainTerminal in index context does not match the one Units 442-446 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[117].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[117].terminals[0]: data object Units 447-448 zn MainTerminal in index context does not match the one Units 447-448 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[118].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[118].terminals[0]: data object Units 504-509 zn MainTerminal in index context does not match the one Units 504-509 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[119].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[119].terminals[0]: data object Units 508-549 zn MainTerminal in index context does not match the one Units 508-549 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[120].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[120].terminals[0]: data object Units 510-511 zn MainTerminal in index context does not match the one Units 510-511 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[121].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[121].terminals[0]: data object Units 512-516 zn MainTerminal in index context does not match the one Units 512-516 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[122].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[122].terminals[0]: data object Units 513-517 zn MainTerminal in index context does not match the one Units 513-517 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[123].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[123].terminals[0]: data object Units 519-527 zn MainTerminal in index context does not match the one Units 519-527 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[124].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[124].terminals[0]: data object Units 520-530 zn MainTerminal in index context does not match the one Units 520-530 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[125].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[125].terminals[0]: data object Units 531-539 zn MainTerminal in index context does not match the one Units 531-539 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[126].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[126].terminals[0]: data object Units 542-546 zn MainTerminal in index context does not match the one Units 542-546 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[127].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[127].terminals[0]: data object Units 547-548 zn MainTerminal in index context does not match the one Units 547-548 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[128].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[128].terminals[0]: data object Units B101-B104 zn MainTerminal in index context does not match the one Units B101-B104 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[129].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[129].terminals[0]: data object Units B105 - 128 zn MainTerminal in index context does not match the one Units B105 - 128 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[130].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[130].terminals[0]: data object Units B105-B113 zn MainTerminal in index context does not match the one Units B105-B113 zn DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[131].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[131].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object IDF PSZ in index context does not match the one DOAS 2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object IDF PSZ FanSys in index context does not match the one DOAS 2 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object IDF PSZ SupplyFan in index context does not match the one DOAS 2 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5]: data object L1 Corridor 1 PSZ in index context does not match the one DOAS-1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system: data object L1 Corridor 1 PSZ FanSys in index context does not match the one DOAS-1 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.supply_fans[0]: data object L1 Corridor 1 PSZ SupplyFan in index context does not match the one DOAS-1 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].heating_system: data object L1 Corridor 1 PSZ HeatSys in index context does not match the one DOAS-1 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6]: data object L1 Corridor 2 PSZ in index context does not match the one DOAS-3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system: data object L1 Corridor 2 PSZ FanSys in index context does not match the one DOAS-3 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.supply_fans[0]: data object L1 Corridor 2 PSZ SupplyFan in index context does not match the one DOAS-3 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].heating_system: data object L1 Corridor 2 PSZ HeatSys in index context does not match the one DOAS-3 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7]: data object L1-2 Corridor PSZ in index context does not match the one DOAS-4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system: data object L1-2 Corridor PSZ FanSys in index context does not match the one DOAS-4 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.supply_fans[0]: data object L1-2 Corridor PSZ SupplyFan in index context does not match the one DOAS-4 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].heating_system: data object L1-2 Corridor PSZ HeatSys in index context does not match the one DOAS-4 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8]: data object L1-2Sys1 (PSZ) (G.NW3) in index context does not match the one DOAS-5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system: data object L1-2Sys1 (PSZ) (G.NW3) FanSys in index context does not match the one DOAS-5 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.NW3) SupplyFan in index context does not match the one DOAS-5 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].heating_system: data object L1-2Sys1 (PSZ) (G.NW3) HeatSys in index context does not match the one DOAS-5 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9]: data object L1-2Sys1 (PSZ) (G.SE1) in index context does not match the one DOAS-B in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system: data object L1-2Sys1 (PSZ) (G.SE1) FanSys in index context does not match the one DOAS-B FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.SE1) SupplyFan in index context does not match the one DOAS-B SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].heating_system: data object L1-2Sys1 (PSZ) (G.SE1) HeatSys in index context does not match the one DOAS-B HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10]: data object L1-2Sys1 (PSZ) (G.SSE6) in index context does not match the one ECUH-A in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system: data object L1-2Sys1 (PSZ) (G.SSE6) FanSys in index context does not match the one ECUH-A FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.SSE6) SupplyFan in index context does not match the one ECUH-A SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].heating_system: data object L1-2Sys1 (PSZ) (G.SSE6) HeatSys in index context does not match the one ECUH-A HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11]: data object L1-2Sys1 (PSZ) (G.SSW5) in index context does not match the one ECUH-A - L1 - Storage zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system: data object L1-2Sys1 (PSZ) (G.SSW5) FanSys in index context does not match the one ECUH-A FanSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.SSW5) SupplyFan in index context does not match the one ECUH-A SupplyFan--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].heating_system: data object L1-2Sys1 (PSZ) (G.SSW5) HeatSys in index context does not match the one ECUH-A HeatSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12]: data object L1Sys1 (PSZ) (G.ENE13) in index context does not match the one EUH-B in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system: data object L1Sys1 (PSZ) (G.ENE13) FanSys in index context does not match the one EUH-B FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.supply_fans[0]: data object L1Sys1 (PSZ) (G.ENE13) SupplyFan in index context does not match the one EUH-B SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].heating_system: data object L1Sys1 (PSZ) (G.ENE13) HeatSys in index context does not match the one EUH-B HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13]: data object L1Sys1 (PSZ) (G.W5) in index context does not match the one EUH-B - L1 Main Electrical Rm zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system: data object L1Sys1 (PSZ) (G.W5) FanSys in index context does not match the one EUH-B FanSys--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.supply_fans[0]: data object L1Sys1 (PSZ) (G.W5) SupplyFan in index context does not match the one EUH-B SupplyFan--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].heating_system: data object L1Sys1 (PSZ) (G.W5) HeatSys in index context does not match the one EUH-B HeatSys--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14]: data object L1Sys1 (PSZ) (G.WSW20) in index context does not match the one EUH-B - Loading zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system: data object L1Sys1 (PSZ) (G.WSW20) FanSys in index context does not match the one EUH-B FanSys--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.supply_fans[0]: data object L1Sys1 (PSZ) (G.WSW20) SupplyFan in index context does not match the one EUH-B SupplyFan--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].heating_system: data object L1Sys1 (PSZ) (G.WSW20) HeatSys in index context does not match the one EUH-B HeatSys--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15]: data object L2 Corridor 2 PSZ in index context does not match the one EUH-B - Trash compactor rm zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system: data object L2 Corridor 2 PSZ FanSys in index context does not match the one EUH-B FanSys--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.supply_fans[0]: data object L2 Corridor 2 PSZ SupplyFan in index context does not match the one EUH-B SupplyFan--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].heating_system: data object L2 Corridor 2 PSZ HeatSys in index context does not match the one EUH-B HeatSys--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16]: data object L2 Corridor PSZ in index context does not match the one EUH-B - Water Rm zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system: data object L2 Corridor PSZ FanSys in index context does not match the one EUH-B FanSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.supply_fans[0]: data object L2 Corridor PSZ SupplyFan in index context does not match the one EUH-B SupplyFan--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].heating_system: data object L2 Corridor PSZ HeatSys in index context does not match the one EUH-B HeatSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17]: data object L2-2 Corridor PSZ in index context does not match the one IDF PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system: data object L2-2 Corridor PSZ FanSys in index context does not match the one IDF PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.supply_fans[0]: data object L2-2 Corridor PSZ SupplyFan in index context does not match the one IDF PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].cooling_system: data object L2-2 Corridor PSZ CoolSys in index context does not match the one IDF PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18]: data object L2-2Sys1 (PSZ) (G.SE1) in index context does not match the one L1 Corridor 1 PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system: data object L2-2Sys1 (PSZ) (G.SE1) FanSys in index context does not match the one L1 Corridor 1 PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.supply_fans[0]: data object L2-2Sys1 (PSZ) (G.SE1) SupplyFan in index context does not match the one L1 Corridor 1 PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].heating_system: data object L2-2Sys1 (PSZ) (G.SE1) HeatSys in index context does not match the one L1 Corridor 1 PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].cooling_system: data object L2-2Sys1 (PSZ) (G.SE1) CoolSys in index context does not match the one L1 Corridor 1 PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19]: data object L2-2Sys1 (PSZ) (G.SSE5) in index context does not match the one L1 Corridor 2 PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system: data object L2-2Sys1 (PSZ) (G.SSE5) FanSys in index context does not match the one L1 Corridor 2 PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.supply_fans[0]: data object L2-2Sys1 (PSZ) (G.SSE5) SupplyFan in index context does not match the one L1 Corridor 2 PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].heating_system: data object L2-2Sys1 (PSZ) (G.SSE5) HeatSys in index context does not match the one L1 Corridor 2 PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].cooling_system: data object L2-2Sys1 (PSZ) (G.SSE5) CoolSys in index context does not match the one L1 Corridor 2 PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20]: data object L2-2Sys2 (PSZ) (G.NNW3) in index context does not match the one L1-2 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].fan_system: data object L2-2Sys2 (PSZ) (G.NNW3) FanSys in index context does not match the one L1-2 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].fan_system.supply_fans[0]: data object L2-2Sys2 (PSZ) (G.NNW3) SupplyFan in index context does not match the one L1-2 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].heating_system: data object L2-2Sys2 (PSZ) (G.NNW3) HeatSys in index context does not match the one L1-2 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].cooling_system: data object L2-2Sys2 (PSZ) (G.NNW3) CoolSys in index context does not match the one L1-2 Corridor PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21]: data object L2Sys1 (PSZ) (G.ENE13) in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].fan_system: data object L2Sys1 (PSZ) (G.ENE13) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.ENE13) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].heating_system: data object L2Sys1 (PSZ) (G.ENE13) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].cooling_system: data object L2Sys1 (PSZ) (G.ENE13) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22]: data object L2Sys1 (PSZ) (G.ENE4) in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].fan_system: data object L2Sys1 (PSZ) (G.ENE4) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.ENE4) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].heating_system: data object L2Sys1 (PSZ) (G.ENE4) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].cooling_system: data object L2Sys1 (PSZ) (G.ENE4) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23]: data object L2Sys1 (PSZ) (G.N2) in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].fan_system: data object L2Sys1 (PSZ) (G.N2) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.N2) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].heating_system: data object L2Sys1 (PSZ) (G.N2) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].cooling_system: data object L2Sys1 (PSZ) (G.N2) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24]: data object L2Sys1 (PSZ) (G.NE3) in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].fan_system: data object L2Sys1 (PSZ) (G.NE3) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.NE3) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].heating_system: data object L2Sys1 (PSZ) (G.NE3) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].cooling_system: data object L2Sys1 (PSZ) (G.NE3) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25]: data object L2Sys1 (PSZ) (G.NNE1) in index context does not match the one L1Sys1 (PSZ) (G.ENE13) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].fan_system: data object L2Sys1 (PSZ) (G.NNE1) FanSys in index context does not match the one L1Sys1 (PSZ) (G.ENE13) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.NNE1) SupplyFan in index context does not match the one L1Sys1 (PSZ) (G.ENE13) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].heating_system: data object L2Sys1 (PSZ) (G.NNE1) HeatSys in index context does not match the one L1Sys1 (PSZ) (G.ENE13) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].cooling_system: data object L2Sys1 (PSZ) (G.NNE1) CoolSys in index context does not match the one L1Sys1 (PSZ) (G.ENE13) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26]: data object L2Sys1 (PSZ) (G.S15) in index context does not match the one L1Sys1 (PSZ) (G.W5) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].fan_system: data object L2Sys1 (PSZ) (G.S15) FanSys in index context does not match the one L1Sys1 (PSZ) (G.W5) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.S15) SupplyFan in index context does not match the one L1Sys1 (PSZ) (G.W5) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].heating_system: data object L2Sys1 (PSZ) (G.S15) HeatSys in index context does not match the one L1Sys1 (PSZ) (G.W5) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].cooling_system: data object L2Sys1 (PSZ) (G.S15) CoolSys in index context does not match the one L1Sys1 (PSZ) (G.W5) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27]: data object L2Sys1 (PSZ) (G.SE5) in index context does not match the one L1Sys1 (PSZ) (G.WSW20) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].fan_system: data object L2Sys1 (PSZ) (G.SE5) FanSys in index context does not match the one L1Sys1 (PSZ) (G.WSW20) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.SE5) SupplyFan in index context does not match the one L1Sys1 (PSZ) (G.WSW20) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].heating_system: data object L2Sys1 (PSZ) (G.SE5) HeatSys in index context does not match the one L1Sys1 (PSZ) (G.WSW20) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].cooling_system: data object L2Sys1 (PSZ) (G.SE5) CoolSys in index context does not match the one L1Sys1 (PSZ) (G.WSW20) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28]: data object L2Sys1 (PSZ) (G.SSE18) in index context does not match the one L2 Corridor 2 PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].fan_system: data object L2Sys1 (PSZ) (G.SSE18) FanSys in index context does not match the one L2 Corridor 2 PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.SSE18) SupplyFan in index context does not match the one L2 Corridor 2 PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].heating_system: data object L2Sys1 (PSZ) (G.SSE18) HeatSys in index context does not match the one L2 Corridor 2 PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].cooling_system: data object L2Sys1 (PSZ) (G.SSE18) CoolSys in index context does not match the one L2 Corridor 2 PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29]: data object L2Sys1 (PSZ) (G.WSW12) in index context does not match the one L2 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].fan_system: data object L2Sys1 (PSZ) (G.WSW12) FanSys in index context does not match the one L2 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.WSW12) SupplyFan in index context does not match the one L2 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].heating_system: data object L2Sys1 (PSZ) (G.WSW12) HeatSys in index context does not match the one L2 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].cooling_system: data object L2Sys1 (PSZ) (G.WSW12) CoolSys in index context does not match the one L2 Corridor PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30]: data object L2Sys1 (PSZ) (G.WSW8) in index context does not match the one L2-2 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].fan_system: data object L2Sys1 (PSZ) (G.WSW8) FanSys in index context does not match the one L2-2 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.WSW8) SupplyFan in index context does not match the one L2-2 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].heating_system: data object L2Sys1 (PSZ) (G.WSW8) HeatSys in index context does not match the one L2-2 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].cooling_system: data object L2Sys1 (PSZ) (G.WSW8) CoolSys in index context does not match the one L2-2 Corridor PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31]: data object L3 Corridor 2 PSZ in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].fan_system: data object L3 Corridor 2 PSZ FanSys in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].fan_system.supply_fans[0]: data object L3 Corridor 2 PSZ SupplyFan in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].heating_system: data object L3 Corridor 2 PSZ HeatSys in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].cooling_system: data object L3 Corridor 2 PSZ CoolSys in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32]: data object L3 Corridor PSZ in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].fan_system: data object L3 Corridor PSZ FanSys in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].fan_system.supply_fans[0]: data object L3 Corridor PSZ SupplyFan in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].heating_system: data object L3 Corridor PSZ HeatSys in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].cooling_system: data object L3 Corridor PSZ CoolSys in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33]: data object L3-2 Corridor PSZ in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].fan_system: data object L3-2 Corridor PSZ FanSys in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].fan_system.supply_fans[0]: data object L3-2 Corridor PSZ SupplyFan in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].heating_system: data object L3-2 Corridor PSZ HeatSys in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].cooling_system: data object L3-2 Corridor PSZ CoolSys in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34]: data object L3-2Sys1 (PSZ) (G.NNW5) in index context does not match the one L2Sys1 (PSZ) (G.ENE13) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].fan_system: data object L3-2Sys1 (PSZ) (G.NNW5) FanSys in index context does not match the one L2Sys1 (PSZ) (G.ENE13) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.NNW5) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.ENE13) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].heating_system: data object L3-2Sys1 (PSZ) (G.NNW5) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.ENE13) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].cooling_system: data object L3-2Sys1 (PSZ) (G.NNW5) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.ENE13) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35]: data object L3-2Sys1 (PSZ) (G.SE2) in index context does not match the one L2Sys1 (PSZ) (G.ENE4) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].fan_system: data object L3-2Sys1 (PSZ) (G.SE2) FanSys in index context does not match the one L2Sys1 (PSZ) (G.ENE4) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.SE2) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.ENE4) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].heating_system: data object L3-2Sys1 (PSZ) (G.SE2) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.ENE4) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].cooling_system: data object L3-2Sys1 (PSZ) (G.SE2) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.ENE4) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36]: data object L3-2Sys1 (PSZ) (G.SSE6) in index context does not match the one L2Sys1 (PSZ) (G.N2) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].fan_system: data object L3-2Sys1 (PSZ) (G.SSE6) FanSys in index context does not match the one L2Sys1 (PSZ) (G.N2) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.SSE6) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.N2) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].heating_system: data object L3-2Sys1 (PSZ) (G.SSE6) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.N2) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].cooling_system: data object L3-2Sys1 (PSZ) (G.SSE6) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.N2) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37]: data object L3-2Sys1 (PSZ) (G.SSW1) in index context does not match the one L2Sys1 (PSZ) (G.NE3) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].fan_system: data object L3-2Sys1 (PSZ) (G.SSW1) FanSys in index context does not match the one L2Sys1 (PSZ) (G.NE3) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.SSW1) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.NE3) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].heating_system: data object L3-2Sys1 (PSZ) (G.SSW1) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.NE3) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].cooling_system: data object L3-2Sys1 (PSZ) (G.SSW1) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.NE3) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38]: data object L3-2Sys1 (PSZ) (M.NNW11) in index context does not match the one L2Sys1 (PSZ) (G.NNE1) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].fan_system: data object L3-2Sys1 (PSZ) (M.NNW11) FanSys in index context does not match the one L2Sys1 (PSZ) (G.NNE1) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.NNW11) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.NNE1) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].heating_system: data object L3-2Sys1 (PSZ) (M.NNW11) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.NNE1) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].cooling_system: data object L3-2Sys1 (PSZ) (M.NNW11) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.NNE1) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39]: data object L3-2Sys1 (PSZ) (M.SE8) in index context does not match the one L2Sys1 (PSZ) (G.S15) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].fan_system: data object L3-2Sys1 (PSZ) (M.SE8) FanSys in index context does not match the one L2Sys1 (PSZ) (G.S15) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.SE8) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.S15) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].heating_system: data object L3-2Sys1 (PSZ) (M.SE8) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.S15) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].cooling_system: data object L3-2Sys1 (PSZ) (M.SE8) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.S15) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40]: data object L3-2Sys1 (PSZ) (M.SSE12) in index context does not match the one L2Sys1 (PSZ) (G.SE5) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].fan_system: data object L3-2Sys1 (PSZ) (M.SSE12) FanSys in index context does not match the one L2Sys1 (PSZ) (G.SE5) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.SSE12) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.SE5) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].heating_system: data object L3-2Sys1 (PSZ) (M.SSE12) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.SE5) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].cooling_system: data object L3-2Sys1 (PSZ) (M.SSE12) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.SE5) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41]: data object L3-2Sys1 (PSZ) (M.SSW7) in index context does not match the one L2Sys1 (PSZ) (G.SSE18) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].fan_system: data object L3-2Sys1 (PSZ) (M.SSW7) FanSys in index context does not match the one L2Sys1 (PSZ) (G.SSE18) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.SSW7) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.SSE18) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].heating_system: data object L3-2Sys1 (PSZ) (M.SSW7) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.SSE18) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].cooling_system: data object L3-2Sys1 (PSZ) (M.SSW7) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.SSE18) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42]: data object L3-2Sys1 (PSZ) (T.NNW17) in index context does not match the one L2Sys1 (PSZ) (G.WSW12) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].fan_system: data object L3-2Sys1 (PSZ) (T.NNW17) FanSys in index context does not match the one L2Sys1 (PSZ) (G.WSW12) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (T.NNW17) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.WSW12) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].heating_system: data object L3-2Sys1 (PSZ) (T.NNW17) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.WSW12) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].cooling_system: data object L3-2Sys1 (PSZ) (T.NNW17) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.WSW12) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43]: data object L3-2Sys1 (PSZ) (T.SE14) in index context does not match the one L2Sys1 (PSZ) (G.WSW8) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].fan_system: data object L3-2Sys1 (PSZ) (T.SE14) FanSys in index context does not match the one L2Sys1 (PSZ) (G.WSW8) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (T.SE14) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.WSW8) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].heating_system: data object L3-2Sys1 (PSZ) (T.SE14) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.WSW8) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].cooling_system: data object L3-2Sys1 (PSZ) (T.SE14) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.WSW8) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44]: data object L3-2Sys1 (PSZ) (T.SSW13) in index context does not match the one L3 Corridor 2 PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].fan_system: data object L3-2Sys1 (PSZ) (T.SSW13) FanSys in index context does not match the one L3 Corridor 2 PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (T.SSW13) SupplyFan in index context does not match the one L3 Corridor 2 PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].heating_system: data object L3-2Sys1 (PSZ) (T.SSW13) HeatSys in index context does not match the one L3 Corridor 2 PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].cooling_system: data object L3-2Sys1 (PSZ) (T.SSW13) CoolSys in index context does not match the one L3 Corridor 2 PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45]: data object L3Sys1 (PSZ) (G.ENE1) in index context does not match the one L3 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].fan_system: data object L3Sys1 (PSZ) (G.ENE1) FanSys in index context does not match the one L3 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.ENE1) SupplyFan in index context does not match the one L3 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].heating_system: data object L3Sys1 (PSZ) (G.ENE1) HeatSys in index context does not match the one L3 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].cooling_system: data object L3Sys1 (PSZ) (G.ENE1) CoolSys in index context does not match the one L3 Corridor PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46]: data object L3Sys1 (PSZ) (G.ENE13) in index context does not match the one L3-2 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].fan_system: data object L3Sys1 (PSZ) (G.ENE13) FanSys in index context does not match the one L3-2 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.ENE13) SupplyFan in index context does not match the one L3-2 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].heating_system: data object L3Sys1 (PSZ) (G.ENE13) HeatSys in index context does not match the one L3-2 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].cooling_system: data object L3Sys1 (PSZ) (G.ENE13) CoolSys in index context does not match the one L3-2 Corridor PSZ CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47]: data object L3Sys1 (PSZ) (G.N15) in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].fan_system: data object L3Sys1 (PSZ) (G.N15) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.N15) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].heating_system: data object L3Sys1 (PSZ) (G.N15) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].cooling_system: data object L3Sys1 (PSZ) (G.N15) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48]: data object L3Sys1 (PSZ) (G.NE3) in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].fan_system: data object L3Sys1 (PSZ) (G.NE3) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.NE3) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].heating_system: data object L3Sys1 (PSZ) (G.NE3) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].cooling_system: data object L3Sys1 (PSZ) (G.NE3) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49]: data object L3Sys1 (PSZ) (G.NW5) in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].fan_system: data object L3Sys1 (PSZ) (G.NW5) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.NW5) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].heating_system: data object L3Sys1 (PSZ) (G.NW5) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].cooling_system: data object L3Sys1 (PSZ) (G.NW5) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50]: data object L3Sys1 (PSZ) (G.S17) in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].fan_system: data object L3Sys1 (PSZ) (G.S17) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.S17) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].heating_system: data object L3Sys1 (PSZ) (G.S17) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].cooling_system: data object L3Sys1 (PSZ) (G.S17) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51]: data object L3Sys1 (PSZ) (G.SE2) in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].fan_system: data object L3Sys1 (PSZ) (G.SE2) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.SE2) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].heating_system: data object L3Sys1 (PSZ) (G.SE2) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].cooling_system: data object L3Sys1 (PSZ) (G.SE2) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52]: data object L3Sys1 (PSZ) (G.SSE16) in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].fan_system: data object L3Sys1 (PSZ) (G.SSE16) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.SSE16) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].heating_system: data object L3Sys1 (PSZ) (G.SSE16) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].cooling_system: data object L3Sys1 (PSZ) (G.SSE16) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53]: data object L3Sys1 (PSZ) (G.WSW14) in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].fan_system: data object L3Sys1 (PSZ) (G.WSW14) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.WSW14) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].heating_system: data object L3Sys1 (PSZ) (G.WSW14) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].cooling_system: data object L3Sys1 (PSZ) (G.WSW14) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54]: data object L3Sys1 (PSZ) (G.WSW7) in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].fan_system: data object L3Sys1 (PSZ) (G.WSW7) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.WSW7) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].heating_system: data object L3Sys1 (PSZ) (G.WSW7) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].cooling_system: data object L3Sys1 (PSZ) (G.WSW7) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55]: data object L3Sys1 (PSZ) (M.ENE18) in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].fan_system: data object L3Sys1 (PSZ) (M.ENE18) FanSys in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.ENE18) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].heating_system: data object L3Sys1 (PSZ) (M.ENE18) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].cooling_system: data object L3Sys1 (PSZ) (M.ENE18) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56]: data object L3Sys1 (PSZ) (M.ENE30) in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].fan_system: data object L3Sys1 (PSZ) (M.ENE30) FanSys in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.ENE30) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].heating_system: data object L3Sys1 (PSZ) (M.ENE30) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].cooling_system: data object L3Sys1 (PSZ) (M.ENE30) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57]: data object L3Sys1 (PSZ) (M.N32) in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].fan_system: data object L3Sys1 (PSZ) (M.N32) FanSys in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.N32) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].heating_system: data object L3Sys1 (PSZ) (M.N32) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].cooling_system: data object L3Sys1 (PSZ) (M.N32) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58]: data object L3Sys1 (PSZ) (M.NE20) in index context does not match the one L3Sys1 (PSZ) (G.ENE1) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system: data object L3Sys1 (PSZ) (M.NE20) FanSys in index context does not match the one L3Sys1 (PSZ) (G.ENE1) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.NE20) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.ENE1) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.NE20) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.ENE1) AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].heating_system: data object L3Sys1 (PSZ) (M.NE20) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.ENE1) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].cooling_system: data object L3Sys1 (PSZ) (M.NE20) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.ENE1) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59]: data object L3Sys1 (PSZ) (M.NW22) in index context does not match the one L3Sys1 (PSZ) (G.ENE13) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].fan_system: data object L3Sys1 (PSZ) (M.NW22) FanSys in index context does not match the one L3Sys1 (PSZ) (G.ENE13) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.NW22) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.ENE13) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].heating_system: data object L3Sys1 (PSZ) (M.NW22) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.ENE13) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].cooling_system: data object L3Sys1 (PSZ) (M.NW22) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.ENE13) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60]: data object L3Sys1 (PSZ) (M.S34) in index context does not match the one L3Sys1 (PSZ) (G.N15) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].fan_system: data object L3Sys1 (PSZ) (M.S34) FanSys in index context does not match the one L3Sys1 (PSZ) (G.N15) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.S34) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.N15) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].heating_system: data object L3Sys1 (PSZ) (M.S34) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.N15) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].cooling_system: data object L3Sys1 (PSZ) (M.S34) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.N15) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61]: data object L3Sys1 (PSZ) (M.SE19) in index context does not match the one L3Sys1 (PSZ) (G.NE3) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system: data object L3Sys1 (PSZ) (M.SE19) FanSys in index context does not match the one L3Sys1 (PSZ) (G.NE3) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.SE19) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.NE3) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.SE19) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.NE3) AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].heating_system: data object L3Sys1 (PSZ) (M.SE19) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.NE3) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].cooling_system: data object L3Sys1 (PSZ) (M.SE19) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.NE3) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62]: data object L3Sys1 (PSZ) (M.SSE33) in index context does not match the one L3Sys1 (PSZ) (G.NW5) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system: data object L3Sys1 (PSZ) (M.SSE33) FanSys in index context does not match the one L3Sys1 (PSZ) (G.NW5) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.SSE33) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.NW5) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.SSE33) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.NW5) AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].heating_system: data object L3Sys1 (PSZ) (M.SSE33) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.NW5) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].cooling_system: data object L3Sys1 (PSZ) (M.SSE33) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.NW5) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63]: data object L3Sys1 (PSZ) (M.WSW24) in index context does not match the one L3Sys1 (PSZ) (G.S17) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].fan_system: data object L3Sys1 (PSZ) (M.WSW24) FanSys in index context does not match the one L3Sys1 (PSZ) (G.S17) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.WSW24) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.S17) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].heating_system: data object L3Sys1 (PSZ) (M.WSW24) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.S17) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].cooling_system: data object L3Sys1 (PSZ) (M.WSW24) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.S17) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64]: data object L3Sys1 (PSZ) (M.WSW31) in index context does not match the one L3Sys1 (PSZ) (G.SE2) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system: data object L3Sys1 (PSZ) (M.WSW31) FanSys in index context does not match the one L3Sys1 (PSZ) (G.SE2) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.WSW31) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.SE2) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.WSW31) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.SE2) AirEconomizer in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].heating_system: data object L3Sys1 (PSZ) (M.WSW31) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.SE2) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].cooling_system: data object L3Sys1 (PSZ) (M.WSW31) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.SE2) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65]: data object L3Sys1 (PSZ) (T.ENE35) in index context does not match the one L3Sys1 (PSZ) (G.SSE16) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].fan_system: data object L3Sys1 (PSZ) (T.ENE35) FanSys in index context does not match the one L3Sys1 (PSZ) (G.SSE16) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.ENE35) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.SSE16) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].heating_system: data object L3Sys1 (PSZ) (T.ENE35) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.SSE16) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].cooling_system: data object L3Sys1 (PSZ) (T.ENE35) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.SSE16) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66]: data object L3Sys1 (PSZ) (T.ENE47) in index context does not match the one L3Sys1 (PSZ) (G.WSW14) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].fan_system: data object L3Sys1 (PSZ) (T.ENE47) FanSys in index context does not match the one L3Sys1 (PSZ) (G.WSW14) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.ENE47) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.WSW14) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].heating_system: data object L3Sys1 (PSZ) (T.ENE47) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.WSW14) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].cooling_system: data object L3Sys1 (PSZ) (T.ENE47) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.WSW14) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67]: data object L3Sys1 (PSZ) (T.N49) in index context does not match the one L3Sys1 (PSZ) (G.WSW7) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].fan_system: data object L3Sys1 (PSZ) (T.N49) FanSys in index context does not match the one L3Sys1 (PSZ) (G.WSW7) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.N49) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.WSW7) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].heating_system: data object L3Sys1 (PSZ) (T.N49) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.WSW7) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].cooling_system: data object L3Sys1 (PSZ) (T.N49) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.WSW7) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68]: data object L3Sys1 (PSZ) (T.NE37) in index context does not match the one L3Sys1 (PSZ) (M.ENE18) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].fan_system: data object L3Sys1 (PSZ) (T.NE37) FanSys in index context does not match the one L3Sys1 (PSZ) (M.ENE18) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.NE37) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.ENE18) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].heating_system: data object L3Sys1 (PSZ) (T.NE37) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.ENE18) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].cooling_system: data object L3Sys1 (PSZ) (T.NE37) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.ENE18) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69]: data object L3Sys1 (PSZ) (T.NW39) in index context does not match the one L3Sys1 (PSZ) (M.ENE30) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].fan_system: data object L3Sys1 (PSZ) (T.NW39) FanSys in index context does not match the one L3Sys1 (PSZ) (M.ENE30) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.NW39) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.ENE30) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].heating_system: data object L3Sys1 (PSZ) (T.NW39) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.ENE30) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].cooling_system: data object L3Sys1 (PSZ) (T.NW39) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.ENE30) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70]: data object L3Sys1 (PSZ) (T.S51) in index context does not match the one L3Sys1 (PSZ) (M.N32) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].fan_system: data object L3Sys1 (PSZ) (T.S51) FanSys in index context does not match the one L3Sys1 (PSZ) (M.N32) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.S51) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.N32) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].heating_system: data object L3Sys1 (PSZ) (T.S51) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.N32) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].cooling_system: data object L3Sys1 (PSZ) (T.S51) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.N32) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71]: data object L3Sys1 (PSZ) (T.SE36) in index context does not match the one L3Sys1 (PSZ) (M.NE20) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].fan_system: data object L3Sys1 (PSZ) (T.SE36) FanSys in index context does not match the one L3Sys1 (PSZ) (M.NE20) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.SE36) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.NE20) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].heating_system: data object L3Sys1 (PSZ) (T.SE36) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.NE20) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].cooling_system: data object L3Sys1 (PSZ) (T.SE36) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.NE20) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72]: data object L3Sys1 (PSZ) (T.SSE50) in index context does not match the one L3Sys1 (PSZ) (M.NW22) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].fan_system: data object L3Sys1 (PSZ) (T.SSE50) FanSys in index context does not match the one L3Sys1 (PSZ) (M.NW22) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.SSE50) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.NW22) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].heating_system: data object L3Sys1 (PSZ) (T.SSE50) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.NW22) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].cooling_system: data object L3Sys1 (PSZ) (T.SSE50) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.NW22) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73]: data object L3Sys1 (PSZ) (T.WSW41) in index context does not match the one L3Sys1 (PSZ) (M.S34) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].fan_system: data object L3Sys1 (PSZ) (T.WSW41) FanSys in index context does not match the one L3Sys1 (PSZ) (M.S34) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.WSW41) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.S34) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].heating_system: data object L3Sys1 (PSZ) (T.WSW41) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.S34) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].cooling_system: data object L3Sys1 (PSZ) (T.WSW41) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.S34) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74]: data object L3Sys1 (PSZ) (T.WSW48) in index context does not match the one L3Sys1 (PSZ) (M.SE19) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].fan_system: data object L3Sys1 (PSZ) (T.WSW48) FanSys in index context does not match the one L3Sys1 (PSZ) (M.SE19) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.WSW48) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.SE19) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].heating_system: data object L3Sys1 (PSZ) (T.WSW48) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.SE19) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].cooling_system: data object L3Sys1 (PSZ) (T.WSW48) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.SE19) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75]: data object L4 Corridor 2 PSZ in index context does not match the one L3Sys1 (PSZ) (M.SSE33) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].fan_system: data object L4 Corridor 2 PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (M.SSE33) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].fan_system.supply_fans[0]: data object L4 Corridor 2 PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.SSE33) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].heating_system: data object L4 Corridor 2 PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (M.SSE33) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].cooling_system: data object L4 Corridor 2 PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (M.SSE33) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76]: data object L4 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (M.WSW24) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].fan_system: data object L4 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (M.WSW24) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].fan_system.supply_fans[0]: data object L4 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.WSW24) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].heating_system: data object L4 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (M.WSW24) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].cooling_system: data object L4 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (M.WSW24) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77]: data object L4-2 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (M.WSW31) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].fan_system: data object L4-2 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (M.WSW31) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].fan_system.supply_fans[0]: data object L4-2 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.WSW31) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].heating_system: data object L4-2 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (M.WSW31) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].cooling_system: data object L4-2 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (M.WSW31) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78]: data object L5 Corridor 2 PSZ in index context does not match the one L3Sys1 (PSZ) (T.ENE35) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].fan_system: data object L5 Corridor 2 PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.ENE35) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].fan_system.supply_fans[0]: data object L5 Corridor 2 PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.ENE35) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].heating_system: data object L5 Corridor 2 PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.ENE35) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].cooling_system: data object L5 Corridor 2 PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.ENE35) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79]: data object L5 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (T.ENE47) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].fan_system: data object L5 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.ENE47) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].fan_system.supply_fans[0]: data object L5 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.ENE47) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].heating_system: data object L5 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.ENE47) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].cooling_system: data object L5 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.ENE47) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80]: data object L5-2 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (T.N49) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].fan_system: data object L5-2 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.N49) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].fan_system.supply_fans[0]: data object L5-2 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.N49) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].heating_system: data object L5-2 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.N49) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].cooling_system: data object L5-2 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.N49) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81]: data object LAST APT ZONE in index context does not match the one L3Sys1 (PSZ) (T.NE37) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].fan_system: data object LAST APT ZONE FanSys in index context does not match the one L3Sys1 (PSZ) (T.NE37) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].fan_system.supply_fans[0]: data object LAST APT ZONE SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.NE37) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].heating_system: data object LAST APT ZONE HeatSys in index context does not match the one L3Sys1 (PSZ) (T.NE37) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].cooling_system: data object LAST APT ZONE CoolSys in index context does not match the one L3Sys1 (PSZ) (T.NE37) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82]: data object Lobby PSZ in index context does not match the one L3Sys1 (PSZ) (T.NW39) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].fan_system: data object Lobby PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.NW39) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].fan_system.supply_fans[0]: data object Lobby PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.NW39) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].heating_system: data object Lobby PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.NW39) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].cooling_system: data object Lobby PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.NW39) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83]: data object Lobby PSZ 2 in index context does not match the one L3Sys1 (PSZ) (T.S51) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].fan_system: data object Lobby PSZ 2 FanSys in index context does not match the one L3Sys1 (PSZ) (T.S51) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].fan_system.supply_fans[0]: data object Lobby PSZ 2 SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.S51) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].heating_system: data object Lobby PSZ 2 HeatSys in index context does not match the one L3Sys1 (PSZ) (T.S51) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].cooling_system: data object Lobby PSZ 2 CoolSys in index context does not match the one L3Sys1 (PSZ) (T.S51) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84]: data object Main entr PSZ in index context does not match the one L3Sys1 (PSZ) (T.SE36) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].fan_system: data object Main entr PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.SE36) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].fan_system.supply_fans[0]: data object Main entr PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.SE36) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].heating_system: data object Main entr PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.SE36) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].cooling_system: data object Main entr PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.SE36) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85]: data object Retail PSZ in index context does not match the one L3Sys1 (PSZ) (T.SSE50) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].fan_system: data object Retail PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.SSE50) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].fan_system.supply_fans[0]: data object Retail PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.SSE50) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].heating_system: data object Retail PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.SSE50) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].cooling_system: data object Retail PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.SSE50) CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86]: data object S3 Sys (UHT) in index context does not match the one L3Sys1 (PSZ) (T.WSW41) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].fan_system: data object S3 Sys (UHT) FanSys in index context does not match the one L3Sys1 (PSZ) (T.WSW41) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.WSW41) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].heating_system: data object S3 Sys (UHT) HeatSys in index context does not match the one L3Sys1 (PSZ) (T.WSW41) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87]: data object S3 Sys (UHT) - B-Elevator 4 zn in index context does not match the one L3Sys1 (PSZ) (T.WSW48) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].fan_system: data object S3 Sys (UHT) FanSys--12 in index context does not match the one L3Sys1 (PSZ) (T.WSW48) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--12 in index context does not match the one L3Sys1 (PSZ) (T.WSW48) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].heating_system: data object S3 Sys (UHT) HeatSys--12 in index context does not match the one L3Sys1 (PSZ) (T.WSW48) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88]: data object S3 Sys (UHT) - B-Stair B zn in index context does not match the one L4 Corridor 2 PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].fan_system: data object S3 Sys (UHT) FanSys--11 in index context does not match the one L4 Corridor 2 PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--11 in index context does not match the one L4 Corridor 2 PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].heating_system: data object S3 Sys (UHT) HeatSys--11 in index context does not match the one L4 Corridor 2 PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89]: data object S3 Sys (UHT) - B-Storage zn in index context does not match the one L4 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].fan_system: data object S3 Sys (UHT) FanSys--5 in index context does not match the one L4 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--5 in index context does not match the one L4 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].heating_system: data object S3 Sys (UHT) HeatSys--5 in index context does not match the one L4 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90]: data object S3 Sys (UHT) - Gas Rm zn in index context does not match the one L4-2 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].fan_system: data object S3 Sys (UHT) FanSys--4 in index context does not match the one L4-2 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--4 in index context does not match the one L4-2 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].heating_system: data object S3 Sys (UHT) HeatSys--4 in index context does not match the one L4-2 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91]: data object S3 Sys (UHT) - L1 - Storage zn in index context does not match the one L5 Corridor 2 PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].fan_system: data object S3 Sys (UHT) FanSys--6 in index context does not match the one L5 Corridor 2 PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--6 in index context does not match the one L5 Corridor 2 PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].heating_system: data object S3 Sys (UHT) HeatSys--6 in index context does not match the one L5 Corridor 2 PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92]: data object S3 Sys (UHT) - L1 Elec/Meter Rm zn in index context does not match the one L5 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].fan_system: data object S3 Sys (UHT) FanSys--2 in index context does not match the one L5 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--2 in index context does not match the one L5 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].heating_system: data object S3 Sys (UHT) HeatSys--2 in index context does not match the one L5 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93]: data object S3 Sys (UHT) - L1 Elevator 3 zn in index context does not match the one L5-2 Corridor PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93].fan_system: data object S3 Sys (UHT) FanSys--14 in index context does not match the one L5-2 Corridor PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--14 in index context does not match the one L5-2 Corridor PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93].heating_system: data object S3 Sys (UHT) HeatSys--14 in index context does not match the one L5-2 Corridor PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94]: data object S3 Sys (UHT) - L1 Main Electrical Rm zn in index context does not match the one LAST APT ZONE in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].fan_system: data object S3 Sys (UHT) FanSys--8 in index context does not match the one LAST APT ZONE FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--8 in index context does not match the one LAST APT ZONE SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].heating_system: data object S3 Sys (UHT) HeatSys--8 in index context does not match the one LAST APT ZONE HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95]: data object S3 Sys (UHT) - L1 Mech 2 zn in index context does not match the one Lobby PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].fan_system: data object S3 Sys (UHT) FanSys--1 in index context does not match the one Lobby PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--1 in index context does not match the one Lobby PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].heating_system: data object S3 Sys (UHT) HeatSys--1 in index context does not match the one Lobby PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96]: data object S3 Sys (UHT) - L1 Mech zn in index context does not match the one Lobby PSZ 2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].fan_system: data object S3 Sys (UHT) FanSys--3 in index context does not match the one Lobby PSZ 2 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--3 in index context does not match the one Lobby PSZ 2 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].heating_system: data object S3 Sys (UHT) HeatSys--3 in index context does not match the one Lobby PSZ 2 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97]: data object S3 Sys (UHT) - L1-2 Stair B zn in index context does not match the one Main entr PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97].fan_system: data object S3 Sys (UHT) FanSys--16 in index context does not match the one Main entr PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--16 in index context does not match the one Main entr PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97].heating_system: data object S3 Sys (UHT) HeatSys--16 in index context does not match the one Main entr PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98]: data object S3 Sys (UHT) - L1-Stair A zn in index context does not match the one Retail PSZ in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].fan_system: data object S3 Sys (UHT) FanSys--13 in index context does not match the one Retail PSZ FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--13 in index context does not match the one Retail PSZ SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].heating_system: data object S3 Sys (UHT) HeatSys--13 in index context does not match the one Retail PSZ HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99]: data object S3 Sys (UHT) - L2 Stair A zn in index context does not match the one S3 Sys (UHT) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].fan_system: data object S3 Sys (UHT) FanSys--18 in index context does not match the one S3 Sys (UHT) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--18 in index context does not match the one S3 Sys (UHT) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].heating_system: data object S3 Sys (UHT) HeatSys--18 in index context does not match the one S3 Sys (UHT) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100]: data object S3 Sys (UHT) - L2 Stairs zn in index context does not match the one S3 Sys (UHT) - B-Elevator 4 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].fan_system: data object S3 Sys (UHT) FanSys--17 in index context does not match the one S3 Sys (UHT) FanSys--6 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--17 in index context does not match the one S3 Sys (UHT) SupplyFan--6 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].heating_system: data object S3 Sys (UHT) HeatSys--17 in index context does not match the one S3 Sys (UHT) HeatSys--6 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101]: data object S3 Sys (UHT) - L2-2 Stair B zn in index context does not match the one S3 Sys (UHT) - B-Stair B zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101].fan_system: data object S3 Sys (UHT) FanSys--10 in index context does not match the one S3 Sys (UHT) FanSys--5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--10 in index context does not match the one S3 Sys (UHT) SupplyFan--5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101].heating_system: data object S3 Sys (UHT) HeatSys--10 in index context does not match the one S3 Sys (UHT) HeatSys--5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102]: data object S3 Sys (UHT) - L3 Stair A zn in index context does not match the one S3 Sys (UHT) - L1 Elec/Meter Rm zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102].fan_system: data object S3 Sys (UHT) FanSys--19 in index context does not match the one S3 Sys (UHT) FanSys--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--19 in index context does not match the one S3 Sys (UHT) SupplyFan--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102].heating_system: data object S3 Sys (UHT) HeatSys--19 in index context does not match the one S3 Sys (UHT) HeatSys--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103]: data object S3 Sys (UHT) - L3 Stairs zn in index context does not match the one S3 Sys (UHT) - L1 Mech 2 zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].fan_system: data object S3 Sys (UHT) FanSys--20 in index context does not match the one S3 Sys (UHT) FanSys--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--20 in index context does not match the one S3 Sys (UHT) SupplyFan--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].heating_system: data object S3 Sys (UHT) HeatSys--20 in index context does not match the one S3 Sys (UHT) HeatSys--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104]: data object S3 Sys (UHT) - L3-2 Stair B zn in index context does not match the one S3 Sys (UHT) - L1 Mech zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104].fan_system: data object S3 Sys (UHT) FanSys--25 in index context does not match the one S3 Sys (UHT) FanSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--25 in index context does not match the one S3 Sys (UHT) SupplyFan--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104].heating_system: data object S3 Sys (UHT) HeatSys--25 in index context does not match the one S3 Sys (UHT) HeatSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105]: data object S3 Sys (UHT) - L4 Stair A zn in index context does not match the one S3 Sys (UHT) - L1-2 Stair B zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105].fan_system: data object S3 Sys (UHT) FanSys--21 in index context does not match the one S3 Sys (UHT) FanSys--8 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--21 in index context does not match the one S3 Sys (UHT) SupplyFan--8 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105].heating_system: data object S3 Sys (UHT) HeatSys--21 in index context does not match the one S3 Sys (UHT) HeatSys--8 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106]: data object S3 Sys (UHT) - L4 Stairs zn in index context does not match the one S3 Sys (UHT) - L1-Stair A zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].fan_system: data object S3 Sys (UHT) FanSys--22 in index context does not match the one S3 Sys (UHT) FanSys--7 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--22 in index context does not match the one S3 Sys (UHT) SupplyFan--7 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].heating_system: data object S3 Sys (UHT) HeatSys--22 in index context does not match the one S3 Sys (UHT) HeatSys--7 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107]: data object S3 Sys (UHT) - L4-2 Stair B zn in index context does not match the one S3 Sys (UHT) - L2 Stair A zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107].fan_system: data object S3 Sys (UHT) FanSys--26 in index context does not match the one S3 Sys (UHT) FanSys--10 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--26 in index context does not match the one S3 Sys (UHT) SupplyFan--10 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107].heating_system: data object S3 Sys (UHT) HeatSys--26 in index context does not match the one S3 Sys (UHT) HeatSys--10 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108]: data object S3 Sys (UHT) - L5 Stair A zn in index context does not match the one S3 Sys (UHT) - L2 Stairs zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].fan_system: data object S3 Sys (UHT) FanSys--23 in index context does not match the one S3 Sys (UHT) FanSys--9 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--23 in index context does not match the one S3 Sys (UHT) SupplyFan--9 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].heating_system: data object S3 Sys (UHT) HeatSys--23 in index context does not match the one S3 Sys (UHT) HeatSys--9 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109]: data object S3 Sys (UHT) - L5 Stairs zn in index context does not match the one S3 Sys (UHT) - L2-2 Stair B zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].fan_system: data object S3 Sys (UHT) FanSys--24 in index context does not match the one S3 Sys (UHT) FanSys--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--24 in index context does not match the one S3 Sys (UHT) SupplyFan--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].heating_system: data object S3 Sys (UHT) HeatSys--24 in index context does not match the one S3 Sys (UHT) HeatSys--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110]: data object S3 Sys (UHT) - L5-2 Stair B zn in index context does not match the one S3 Sys (UHT) - L3 Stair A zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].fan_system: data object S3 Sys (UHT) FanSys--27 in index context does not match the one S3 Sys (UHT) FanSys--11 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--27 in index context does not match the one S3 Sys (UHT) SupplyFan--11 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].heating_system: data object S3 Sys (UHT) HeatSys--27 in index context does not match the one S3 Sys (UHT) HeatSys--11 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111]: data object S3 Sys (UHT) - Loading zn in index context does not match the one S3 Sys (UHT) - L3 Stairs zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].fan_system: data object S3 Sys (UHT) FanSys--15 in index context does not match the one S3 Sys (UHT) FanSys--12 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--15 in index context does not match the one S3 Sys (UHT) SupplyFan--12 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].heating_system: data object S3 Sys (UHT) HeatSys--15 in index context does not match the one S3 Sys (UHT) HeatSys--12 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112]: data object S3 Sys (UHT) - Outdoor Mech Rm zn in index context does not match the one S3 Sys (UHT) - L3-2 Stair B zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].fan_system: data object S3 Sys (UHT) FanSys--28 in index context does not match the one S3 Sys (UHT) FanSys--17 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--28 in index context does not match the one S3 Sys (UHT) SupplyFan--17 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].heating_system: data object S3 Sys (UHT) HeatSys--28 in index context does not match the one S3 Sys (UHT) HeatSys--17 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113]: data object S3 Sys (UHT) - Pool equip. rm zn in index context does not match the one S3 Sys (UHT) - L4 Stair A zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].fan_system: data object S3 Sys (UHT) FanSys--29 in index context does not match the one S3 Sys (UHT) FanSys--13 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--29 in index context does not match the one S3 Sys (UHT) SupplyFan--13 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].heating_system: data object S3 Sys (UHT) HeatSys--29 in index context does not match the one S3 Sys (UHT) HeatSys--13 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114]: data object S3 Sys (UHT) - Trash compactor rm zn in index context does not match the one S3 Sys (UHT) - L4 Stairs zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].fan_system: data object S3 Sys (UHT) FanSys--9 in index context does not match the one S3 Sys (UHT) FanSys--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--9 in index context does not match the one S3 Sys (UHT) SupplyFan--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].heating_system: data object S3 Sys (UHT) HeatSys--9 in index context does not match the one S3 Sys (UHT) HeatSys--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115]: data object S3 Sys (UHT) - Water Rm zn in index context does not match the one S3 Sys (UHT) - L4-2 Stair B zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].fan_system: data object S3 Sys (UHT) FanSys--7 in index context does not match the one S3 Sys (UHT) FanSys--18 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--7 in index context does not match the one S3 Sys (UHT) SupplyFan--18 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].heating_system: data object S3 Sys (UHT) HeatSys--7 in index context does not match the one S3 Sys (UHT) HeatSys--18 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116]: data object Unit 240 PSZ in index context does not match the one S3 Sys (UHT) - L5 Stair A zn in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].fan_system: data object Unit 240 PSZ FanSys in index context does not match the one S3 Sys (UHT) FanSys--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].fan_system.supply_fans[0]: data object Unit 240 PSZ SupplyFan in index context does not match the one S3 Sys (UHT) SupplyFan--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].heating_system: data object Unit 240 PSZ HeatSys in index context does not match the one S3 Sys (UHT) HeatSys--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].area_type_vertical_fenestration: index context data: OTHER does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].lighting_building_area_type: index context data: MULTIFAMILY does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].schedules[1]: data object ASHRAE AppC MF 2884 EFLH Lgt Ann in index context does not match the one 2/24 Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[2]: data object ASHRAE AppC MF 5840 EFLH Misc Yr in index context does not match the one ASHRAE AppC MF 2884 EFLH Lgt Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[3]: data object ASHRAE AppC MF 6041 EFLH Occ Ann in index context does not match the one ASHRAE AppC MF 5840 EFLH Misc Yr in compare context', 'path: $.ruleset_model_descriptions[0].schedules[4]: data object Always On Ann in index context does not match the one ASHRAE AppC MF 6041 EFLH Occ Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[5]: data object App G BL HW Lp Heat Reset Sch in index context does not match the one Always On Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[6]: data object BBldg InsLt Sch in index context does not match the one App G BL HW Lp Heat Reset Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[7]: data object BBldg Misc Sch in index context does not match the one BBldg InsLt Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[8]: data object BBldg Occup Sch in index context does not match the one BBldg Misc Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[9]: data object Boiler Reset Ann in index context does not match the one BBldg Occup Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[10]: data object COMCHECK MF Lgt 2884 EFLH Ann in index context does not match the one Boiler Reset Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[11]: data object COMCHECK MF Misc 5840 EFLHs Ann in index context does not match the one COMCHECK MF Lgt 2884 EFLH Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[12]: data object COMCHECK MF Occ 6041 EFLHs Ann in index context does not match the one COMCHECK MF Misc 5840 EFLHs Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[13]: data object Cust 1 Elec Season Sched in index context does not match the one COMCHECK MF Occ 6041 EFLHs Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[14]: data object Custom Gas Season Sched in index context does not match the one Cust 1 Elec Season Sched in compare context', 'path: $.ruleset_model_descriptions[0].schedules[15]: data object DHW Eqp NRes Sch in index context does not match the one Custom Gas Season Sched in compare context', 'path: $.ruleset_model_descriptions[0].schedules[16]: data object DHW Eqp Res Sch in index context does not match the one DHW Eqp NRes Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[17]: data object Dirt Depre Windows in index context does not match the one DHW Eqp Res Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[18]: data object EPA APT Ltg Yr 854 EFLHs Ann in index context does not match the one Dirt Depre Windows in compare context', 'path: $.ruleset_model_descriptions[0].schedules[19]: data object EPA Cool Schedule Ann in index context does not match the one EPA APT Ltg Yr 854 EFLHs Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[20]: data object EPA EQP Com. Area 3285 EFLH Ann in index context does not match the one EPA Cool Schedule Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[21]: data object EPA EQUIP 2117 EFLHs Apt Ann in index context does not match the one EPA EQP Com. Area 3285 EFLH Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[22]: data object EPA Heat Schedule Ann in index context does not match the one EPA EQUIP 2117 EFLHs Apt Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[23]: data object EPA Lgt Com. Area 3285 EFLH Ann in index context does not match the one EPA Heat Schedule Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[24]: data object EPA MF DHW Ann 2628 EFLHs in index context does not match the one EPA Lgt Com. Area 3285 EFLH Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[25]: data object HW Lp Heat Reset Sch in index context does not match the one EPA MF DHW Ann 2628 EFLHs in compare context', 'path: $.ruleset_model_descriptions[0].schedules[26]: data object Hourly Report Schedule in index context does not match the one HW Lp Heat Reset Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[27]: data object L1-2Bldg InsLt Sch in index context does not match the one Hourly Report Schedule in compare context', 'path: $.ruleset_model_descriptions[0].schedules[28]: data object L1-2Bldg Misc Sch in index context does not match the one L1-2Bldg InsLt Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[29]: data object L1-2Bldg Occup Sch in index context does not match the one L1-2Bldg Misc Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[30]: data object L1Bldg InsLt Sch in index context does not match the one L1-2Bldg Occup Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[31]: data object L1Bldg Misc Sch in index context does not match the one L1Bldg InsLt Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[32]: data object L1Bldg Occup Sch in index context does not match the one L1Bldg Misc Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[33]: data object Resi Ext Lgt 4380 EFLH Ann in index context does not match the one L1Bldg Occup Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[34]: data object S1 Sys1 (PSZ) Cool Sch in index context does not match the one Resi Ext Lgt 4380 EFLH Ann in compare context', 'path: $.ruleset_model_descriptions[0].schedules[35]: data object S1 Sys1 (PSZ) Fan Sch in index context does not match the one S1 Sys1 (PSZ) Cool Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[36]: data object S1 Sys1 (PSZ) Heat Sch in index context does not match the one S1 Sys1 (PSZ) Fan Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[37]: data object S2 Sys2 (PSZ) Fan Sch in index context does not match the one S1 Sys1 (PSZ) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[38]: data object S2 Sys2 (PSZ) MinOA Sch in index context does not match the one S2 Sys2 (PSZ) Fan Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[39]: data object S3 Sys3 (UHT) Heat Sch in index context does not match the one S2 Sys2 (PSZ) MinOA Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[40]: data object ZG0-S1 (PSZ) C-Inf Sch in index context does not match the one S3 Sys3 (UHT) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[41]: data object ZG0-S1 (PSZ) P-Inf Sch in index context does not match the one ZG0-S1 (PSZ) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[42]: data object ZG1-S1 (PSZ) C-Inf Sch in index context does not match the one ZG0-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[43]: data object ZG1-S1 (PSZ) P-Inf Sch in index context does not match the one ZG1-S1 (PSZ) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[44]: data object ZG14-S1 (PSZ) P-Inf Sch in index context does not match the one ZG1-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[45]: data object ZG15-S1 (PSZ) P-Inf Sch in index context does not match the one ZG14-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[46]: data object ZG6-S1 (PSZ) P-Inf Sch in index context does not match the one ZG15-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[47]: data object ZG7-S1 (PSZ) P-Inf Sch in index context does not match the one ZG6-S1 (PSZ) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].constructions[15]: data object L1-2GFlSP Construction in index context does not match the one HP AGW cons in compare context', 'path: $.ruleset_model_descriptions[0].constructions[16]: data object L1-2GFlr Construction in index context does not match the one HP Roof cons in compare context', 'path: $.ruleset_model_descriptions[0].constructions[17]: data object L1UFCons (G.E1.U2) in index context does not match the one L1-2GFlSP Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[18]: data object L1UFCons (G.E17.U18) in index context does not match the one L1-2GFlr Construction in compare context', 'path: $.ruleset_model_descriptions[0].constructions[19]: data object L1UFCons (G.ENE13.U14) in index context does not match the one L1UFCons (G.E1.U2) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[20]: data object L1UFCons (G.N2.U3) in index context does not match the one L1UFCons (G.E17.U18) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[21]: data object L1UFCons (G.S19.U20) in index context does not match the one L1UFCons (G.ENE13.U14) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[22]: data object L1UFCons (G.SSW16.U17) in index context does not match the one L1UFCons (G.N2.U3) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[23]: data object L1UFCons (G.SSW18.U19) in index context does not match the one L1UFCons (G.S19.U20) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[24]: data object L1UFCons (G.SSW8.U9) in index context does not match the one L1UFCons (G.SSW16.U17) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[25]: data object L1UFCons (G.SW11.U12) in index context does not match the one L1UFCons (G.SSW18.U19) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[26]: data object L1UFCons (G.SW9.U10) in index context does not match the one L1UFCons (G.SSW8.U9) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[27]: data object L1UFCons (G.W3.U4) in index context does not match the one L1UFCons (G.SW11.U12) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[28]: data object L1UFCons (G.W5.U6) in index context does not match the one L1UFCons (G.SW9.U10) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[29]: data object L1UFCons (G.W6.U7) in index context does not match the one L1UFCons (G.W3.U4) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[30]: data object L1UFCons (G.WSW10.U11) in index context does not match the one L1UFCons (G.W5.U6) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[31]: data object L1UFCons (G.WSW14.U15) in index context does not match the one L1UFCons (G.W6.U7) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[32]: data object L1UFCons (G.WSW15.U16) in index context does not match the one L1UFCons (G.WSW10.U11) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[33]: data object L1UFCons (G.WSW20.U21) in index context does not match the one L1UFCons (G.WSW14.U15) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[34]: data object L1UFCons (G.WSW4.U5) in index context does not match the one L1UFCons (G.WSW15.U16) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[35]: data object MECHUFCons (G.W1.U2) in index context does not match the one L1UFCons (G.WSW20.U21) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[36]: data object POOLUFCons (G.W1.U2) in index context does not match the one L1UFCons (G.WSW4.U5) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[37]: data object PR AGW cons in index context does not match the one MECHUFCons (G.W1.U2) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[38]: data object PR Roof in index context does not match the one POOLUFCons (G.W1.U2) in compare context', 'path: $.ruleset_model_descriptions[0].constructions[39]: data object PR SOG in index context does not match the one PR AGW cons in compare context', 'path: $.ruleset_model_descriptions[0].constructions[40]: data object Sgl Lyr Unins Mtl Door in index context does not match the one PR Roof in compare context', 'path: $.ruleset_model_descriptions[0].materials[31]: data object Light Soil, Damp 12in_0.19 in index context does not match the one MECHUFMat (G.W1.U2.M1) in compare context', 'path: $.ruleset_model_descriptions[0].materials[32]: data object MECHUFMat (G.W1.U2.M1) in index context does not match the one MinWool Batt R7 (IN01) in compare context', 'path: $.ruleset_model_descriptions[0].materials[33]: data object MinWool Batt R7 (IN01) in index context does not match the one MinWool Batt R7 (IN01)_0.15 in compare context', 'path: $.ruleset_model_descriptions[0].materials[34]: data object MinWool Batt R7 (IN01)_0.15 in index context does not match the one MinWool Batt R7 (IN01)_0.152 in compare context', 'path: $.ruleset_model_descriptions[0].materials[35]: data object MinWool Batt R7 (IN01)_0.152 in index context does not match the one MinWool Batt R7 (IN01)_0.25 in compare context', 'path: $.ruleset_model_descriptions[0].materials[36]: data object MinWool Batt R7 (IN01)_0.25 in index context does not match the one MinWool Batt R7 (IN01)_0.41 in compare context', 'path: $.ruleset_model_descriptions[0].materials[41]: data object Polyisocyanurate 1in_0.14 in index context does not match the one Polyisocyanurate 1in_0.176 in compare context', 'path: $.ruleset_model_descriptions[0].materials[42]: data object Polyisocyanurate 1in_0.176 in index context does not match the one Polyisocyanurate 1in_0.185 in compare context', 'path: $.ruleset_model_descriptions[0].materials[43]: data object Polyisocyanurate 1in_0.185 in index context does not match the one Polyisocyanurate 1in_0.22 in compare context', 'path: $.ruleset_model_descriptions[0].materials[44]: data object Polyisocyanurate 1in_0.33 in index context does not match the one Polyisocyanurate 1in_0.31 in compare context', 'path: $.ruleset_model_descriptions[0].materials[45]: data object Polyisocyanurate 1in_0.36 in index context does not match the one Polyisocyanurate 1in_0.33 in compare context', 'path: $.ruleset_model_descriptions[0].materials[46]: data object Polystyrene 1/2in (IN31) in index context does not match the one Polyisocyanurate 1in_0.63 in compare context', 'path: $.ruleset_model_descriptions[0].materials[47]: data object Polystyrene 1/2in (IN31)_0.15 in index context does not match the one Polyisocyanurate 1in_0.77 in compare context', 'path: $.ruleset_model_descriptions[0].materials[48]: data object Stucco 1in (SC01) in index context does not match the one Polystyrene 1/2in (IN31) in compare context', 'path: $.ruleset_model_descriptions[0].materials[49]: data object Stucco 1in (SC01)_0.033 in index context does not match the one Polystyrene 1/2in (IN31)_0.15 in compare context']" + } + ], + "messages": "path: $.ruleset_model_descriptions[0]: data object Sample 4-BL in index context does not match the one Sample 4-PR - 16 - Proposed in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0]: data object MULTIFAMILY in index context does not match the one Default Building Segment in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[0].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[2].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].spaces[0].lighting_space_type: index context data: STORAGE_ROOM_LARGE does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[4].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[6].spaces[0].lighting_space_type: index context data: STORAGE_ROOM_LARGE does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].spaces[0].lighting_space_type: index context data: STORAGE_ROOM_LARGE does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[8].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[9].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[10].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[13].thermostat_heating_setpoint_schedule: index context data: EPA Heat Schedule Ann does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[14].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[14].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[16].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[17].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[18].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[19].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[20].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[21].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[26].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[27].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[28].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[29].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[30].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[31].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[35].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[36].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[37].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[38].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[39].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[40].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[44].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[45].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[46].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[47].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[48].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[49].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[53].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[54].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[55].spaces[0].lighting_space_type: index context data: CORRIDOR_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[56].spaces[0].lighting_space_type: index context data: STAIRWELL does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[57].spaces[0].lighting_space_type: index context data: WAREHOUSE_STORAGE_AREA_MEDIUM_TO_BULKY_PALLETIZED_ITEMS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[58].spaces[0].lighting_space_type: index context data: LOBBY_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[59].spaces[0].lighting_space_type: index context data: LOBBY_ALL_OTHERS does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[63].spaces[0].lighting_space_type: index context data: SALES_AREA does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[64].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[65].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[65].terminals[0]: data object Unit 128 zn MainTerminal in index context does not match the one Unit 128 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[66].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[66].terminals[0]: data object Unit 135 zn MainTerminal in index context does not match the one Unit 135 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[67].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[67].terminals[0]: data object Unit 201 zn MainTerminal in index context does not match the one Unit 201 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[68].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[68].terminals[0]: data object Unit 203 zn MainTerminal in index context does not match the one Unit 203 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[69].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[69].terminals[0]: data object Unit 218 zn MainTerminal in index context does not match the one Unit 218 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].spaces[0].number_of_occupants: index context data: 0.9815 does not equal to compare context data: 2.583; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].terminals[0]: data object Unit 240 zn MainTerminal in index context does not match the one Unit 240 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[71].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[72].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[72].terminals[0]: data object Unit 340 zn MainTerminal in index context does not match the one Unit 340 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[73].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[74].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[74].terminals[0]: data object Unit 403 zn MainTerminal in index context does not match the one Unit 403 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[75].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[75].terminals[0]: data object Unit 410-411 zn MainTerminal in index context does not match the one Unit 410-411 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[76].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[76].terminals[0]: data object Unit 418 zn MainTerminal in index context does not match the one Unit 418 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[77].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[77].terminals[0]: data object Unit 440 zn MainTerminal in index context does not match the one Unit 440 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[78].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[78].terminals[0]: data object Unit 450 zn MainTerminal in index context does not match the one Unit 450 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[79].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[79].terminals[0]: data object Unit 503 zn MainTerminal in index context does not match the one Unit 503 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].terminals[0]: data object Unit 518 zn MainTerminal in index context does not match the one Unit 518 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[81].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[81].terminals[0]: data object Unit 540 zn MainTerminal in index context does not match the one Unit 540 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[82].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[82].terminals[0]: data object Unit 550 zn MainTerminal in index context does not match the one Unit 550 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[83].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[83].terminals[0]: data object Unit B-114 zn MainTerminal in index context does not match the one Unit B-114 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[84].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[84].terminals[0]: data object Units 104 - 115 zn MainTerminal in index context does not match the one Units 104 - 115 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[85].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[85].terminals[0]: data object Units 111-113 zn MainTerminal in index context does not match the one Units 111-113 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].terminals[0]: data object Units 114-120 zn MainTerminal in index context does not match the one Units 114-120 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[87].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[87].terminals[0]: data object Units 129-134 zn MainTerminal in index context does not match the one Units 129-134 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[88].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[88].terminals[0]: data object Units 202-208 zn MainTerminal in index context does not match the one Units 202-208 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[89].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[89].terminals[0]: data object Units 205-209 zn MainTerminal in index context does not match the one Units 205-209 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[90].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[90].terminals[0]: data object Units 210-211 zn MainTerminal in index context does not match the one Units 210-211 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[91].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[91].terminals[0]: data object Units 212-216 zn MainTerminal in index context does not match the one Units 212-216 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[92].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[92].terminals[0]: data object Units 213-217 zn MainTerminal in index context does not match the one Units 213-217 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[93].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[93].terminals[0]: data object Units 219-227 zn MainTerminal in index context does not match the one Units 219-227 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[94].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[94].terminals[0]: data object Units 220-229 zn MainTerminal in index context does not match the one Units 220-229 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[95].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[95].terminals[0]: data object Units 231-239 zn MainTerminal in index context does not match the one Units 231-239 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[96].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[96].terminals[0]: data object Units 241-246 zn MainTerminal in index context does not match the one Units 241-246 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[97].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[97].terminals[0]: data object Units 247-248 zn MainTerminal in index context does not match the one Units 247-248 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[98].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[98].terminals[0]: data object Units 303 zn MainTerminal in index context does not match the one Units 303 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[99].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[99].terminals[0]: data object Units 305-309 zn MainTerminal in index context does not match the one Units 305-309 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[100].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[100].terminals[0]: data object Units 308-349 zn MainTerminal in index context does not match the one Units 308-349 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[101].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[102].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[102].terminals[0]: data object Units 312-316 zn MainTerminal in index context does not match the one Units 312-316 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[103].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[104].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[104].terminals[0]: data object Units 319-327 zn MainTerminal in index context does not match the one Units 319-327 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[105].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[105].terminals[0]: data object Units 320-330 zn MainTerminal in index context does not match the one Units 320-330 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[106].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[106].terminals[0]: data object Units 331-339 zn MainTerminal in index context does not match the one Units 331-339 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[107].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[107].terminals[0]: data object Units 342-346 zn MainTerminal in index context does not match the one Units 342-346 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[108].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[108].terminals[0]: data object Units 347-348 zn MainTerminal in index context does not match the one Units 347-348 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[109].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[109].terminals[0]: data object Units 404-409 zn MainTerminal in index context does not match the one Units 404-409 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[110].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[110].terminals[0]: data object Units 408-449 zn MainTerminal in index context does not match the one Units 408-449 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[111].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[111].terminals[0]: data object Units 412-416 zn MainTerminal in index context does not match the one Units 412-416 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[112].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[112].terminals[0]: data object Units 413-417 zn MainTerminal in index context does not match the one Units 413-417 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[113].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[113].terminals[0]: data object Units 419-427 zn MainTerminal in index context does not match the one Units 419-427 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[114].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[114].terminals[0]: data object Units 420-430 zn MainTerminal in index context does not match the one Units 420-430 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[115].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[115].terminals[0]: data object Units 431-439 zn MainTerminal in index context does not match the one Units 431-439 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[116].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[116].terminals[0]: data object Units 442-446 zn MainTerminal in index context does not match the one Units 442-446 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[117].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[117].terminals[0]: data object Units 447-448 zn MainTerminal in index context does not match the one Units 447-448 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[118].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[118].terminals[0]: data object Units 504-509 zn MainTerminal in index context does not match the one Units 504-509 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[119].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[119].terminals[0]: data object Units 508-549 zn MainTerminal in index context does not match the one Units 508-549 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[120].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[120].terminals[0]: data object Units 510-511 zn MainTerminal in index context does not match the one Units 510-511 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[121].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[121].terminals[0]: data object Units 512-516 zn MainTerminal in index context does not match the one Units 512-516 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[122].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[122].terminals[0]: data object Units 513-517 zn MainTerminal in index context does not match the one Units 513-517 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[123].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[123].terminals[0]: data object Units 519-527 zn MainTerminal in index context does not match the one Units 519-527 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[124].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[124].terminals[0]: data object Units 520-530 zn MainTerminal in index context does not match the one Units 520-530 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[125].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[125].terminals[0]: data object Units 531-539 zn MainTerminal in index context does not match the one Units 531-539 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[126].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[126].terminals[0]: data object Units 542-546 zn MainTerminal in index context does not match the one Units 542-546 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[127].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[127].terminals[0]: data object Units 547-548 zn MainTerminal in index context does not match the one Units 547-548 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[128].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[128].terminals[0]: data object Units B101-B104 zn MainTerminal in index context does not match the one Units B101-B104 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[129].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[129].terminals[0]: data object Units B105 - 128 zn MainTerminal in index context does not match the one Units B105 - 128 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[130].spaces[0].lighting_space_type: index context data: DWELLING_UNIT does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[130].terminals[0]: data object Units B105-B113 zn MainTerminal in index context does not match the one Units B105-B113 zn DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[131].spaces[0].lighting_space_type: index context data: ELECTRICAL_MECHANICAL_ROOM does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[131].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object IDF PSZ in index context does not match the one DOAS 2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object IDF PSZ FanSys in index context does not match the one DOAS 2 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object IDF PSZ SupplyFan in index context does not match the one DOAS 2 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5]: data object L1 Corridor 1 PSZ in index context does not match the one DOAS-1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system: data object L1 Corridor 1 PSZ FanSys in index context does not match the one DOAS-1 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.supply_fans[0]: data object L1 Corridor 1 PSZ SupplyFan in index context does not match the one DOAS-1 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].heating_system: data object L1 Corridor 1 PSZ HeatSys in index context does not match the one DOAS-1 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6]: data object L1 Corridor 2 PSZ in index context does not match the one DOAS-3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system: data object L1 Corridor 2 PSZ FanSys in index context does not match the one DOAS-3 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.supply_fans[0]: data object L1 Corridor 2 PSZ SupplyFan in index context does not match the one DOAS-3 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].heating_system: data object L1 Corridor 2 PSZ HeatSys in index context does not match the one DOAS-3 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7]: data object L1-2 Corridor PSZ in index context does not match the one DOAS-4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system: data object L1-2 Corridor PSZ FanSys in index context does not match the one DOAS-4 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.supply_fans[0]: data object L1-2 Corridor PSZ SupplyFan in index context does not match the one DOAS-4 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].heating_system: data object L1-2 Corridor PSZ HeatSys in index context does not match the one DOAS-4 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8]: data object L1-2Sys1 (PSZ) (G.NW3) in index context does not match the one DOAS-5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system: data object L1-2Sys1 (PSZ) (G.NW3) FanSys in index context does not match the one DOAS-5 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.NW3) SupplyFan in index context does not match the one DOAS-5 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].heating_system: data object L1-2Sys1 (PSZ) (G.NW3) HeatSys in index context does not match the one DOAS-5 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9]: data object L1-2Sys1 (PSZ) (G.SE1) in index context does not match the one DOAS-B in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system: data object L1-2Sys1 (PSZ) (G.SE1) FanSys in index context does not match the one DOAS-B FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.SE1) SupplyFan in index context does not match the one DOAS-B SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].heating_system: data object L1-2Sys1 (PSZ) (G.SE1) HeatSys in index context does not match the one DOAS-B HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10]: data object L1-2Sys1 (PSZ) (G.SSE6) in index context does not match the one ECUH-A in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system: data object L1-2Sys1 (PSZ) (G.SSE6) FanSys in index context does not match the one ECUH-A FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.SSE6) SupplyFan in index context does not match the one ECUH-A SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].heating_system: data object L1-2Sys1 (PSZ) (G.SSE6) HeatSys in index context does not match the one ECUH-A HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11]: data object L1-2Sys1 (PSZ) (G.SSW5) in index context does not match the one ECUH-A - L1 - Storage zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system: data object L1-2Sys1 (PSZ) (G.SSW5) FanSys in index context does not match the one ECUH-A FanSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.supply_fans[0]: data object L1-2Sys1 (PSZ) (G.SSW5) SupplyFan in index context does not match the one ECUH-A SupplyFan--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].heating_system: data object L1-2Sys1 (PSZ) (G.SSW5) HeatSys in index context does not match the one ECUH-A HeatSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12]: data object L1Sys1 (PSZ) (G.ENE13) in index context does not match the one EUH-B in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system: data object L1Sys1 (PSZ) (G.ENE13) FanSys in index context does not match the one EUH-B FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.supply_fans[0]: data object L1Sys1 (PSZ) (G.ENE13) SupplyFan in index context does not match the one EUH-B SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].heating_system: data object L1Sys1 (PSZ) (G.ENE13) HeatSys in index context does not match the one EUH-B HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13]: data object L1Sys1 (PSZ) (G.W5) in index context does not match the one EUH-B - L1 Main Electrical Rm zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system: data object L1Sys1 (PSZ) (G.W5) FanSys in index context does not match the one EUH-B FanSys--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.supply_fans[0]: data object L1Sys1 (PSZ) (G.W5) SupplyFan in index context does not match the one EUH-B SupplyFan--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].heating_system: data object L1Sys1 (PSZ) (G.W5) HeatSys in index context does not match the one EUH-B HeatSys--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14]: data object L1Sys1 (PSZ) (G.WSW20) in index context does not match the one EUH-B - Loading zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system: data object L1Sys1 (PSZ) (G.WSW20) FanSys in index context does not match the one EUH-B FanSys--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.supply_fans[0]: data object L1Sys1 (PSZ) (G.WSW20) SupplyFan in index context does not match the one EUH-B SupplyFan--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].heating_system: data object L1Sys1 (PSZ) (G.WSW20) HeatSys in index context does not match the one EUH-B HeatSys--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15]: data object L2 Corridor 2 PSZ in index context does not match the one EUH-B - Trash compactor rm zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system: data object L2 Corridor 2 PSZ FanSys in index context does not match the one EUH-B FanSys--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.supply_fans[0]: data object L2 Corridor 2 PSZ SupplyFan in index context does not match the one EUH-B SupplyFan--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].heating_system: data object L2 Corridor 2 PSZ HeatSys in index context does not match the one EUH-B HeatSys--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16]: data object L2 Corridor PSZ in index context does not match the one EUH-B - Water Rm zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system: data object L2 Corridor PSZ FanSys in index context does not match the one EUH-B FanSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.supply_fans[0]: data object L2 Corridor PSZ SupplyFan in index context does not match the one EUH-B SupplyFan--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].heating_system: data object L2 Corridor PSZ HeatSys in index context does not match the one EUH-B HeatSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17]: data object L2-2 Corridor PSZ in index context does not match the one IDF PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system: data object L2-2 Corridor PSZ FanSys in index context does not match the one IDF PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.supply_fans[0]: data object L2-2 Corridor PSZ SupplyFan in index context does not match the one IDF PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].cooling_system: data object L2-2 Corridor PSZ CoolSys in index context does not match the one IDF PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18]: data object L2-2Sys1 (PSZ) (G.SE1) in index context does not match the one L1 Corridor 1 PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system: data object L2-2Sys1 (PSZ) (G.SE1) FanSys in index context does not match the one L1 Corridor 1 PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.supply_fans[0]: data object L2-2Sys1 (PSZ) (G.SE1) SupplyFan in index context does not match the one L1 Corridor 1 PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].heating_system: data object L2-2Sys1 (PSZ) (G.SE1) HeatSys in index context does not match the one L1 Corridor 1 PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].cooling_system: data object L2-2Sys1 (PSZ) (G.SE1) CoolSys in index context does not match the one L1 Corridor 1 PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19]: data object L2-2Sys1 (PSZ) (G.SSE5) in index context does not match the one L1 Corridor 2 PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system: data object L2-2Sys1 (PSZ) (G.SSE5) FanSys in index context does not match the one L1 Corridor 2 PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.supply_fans[0]: data object L2-2Sys1 (PSZ) (G.SSE5) SupplyFan in index context does not match the one L1 Corridor 2 PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].heating_system: data object L2-2Sys1 (PSZ) (G.SSE5) HeatSys in index context does not match the one L1 Corridor 2 PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].cooling_system: data object L2-2Sys1 (PSZ) (G.SSE5) CoolSys in index context does not match the one L1 Corridor 2 PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20]: data object L2-2Sys2 (PSZ) (G.NNW3) in index context does not match the one L1-2 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].fan_system: data object L2-2Sys2 (PSZ) (G.NNW3) FanSys in index context does not match the one L1-2 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].fan_system.supply_fans[0]: data object L2-2Sys2 (PSZ) (G.NNW3) SupplyFan in index context does not match the one L1-2 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].heating_system: data object L2-2Sys2 (PSZ) (G.NNW3) HeatSys in index context does not match the one L1-2 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].cooling_system: data object L2-2Sys2 (PSZ) (G.NNW3) CoolSys in index context does not match the one L1-2 Corridor PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21]: data object L2Sys1 (PSZ) (G.ENE13) in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].fan_system: data object L2Sys1 (PSZ) (G.ENE13) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.ENE13) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].heating_system: data object L2Sys1 (PSZ) (G.ENE13) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].cooling_system: data object L2Sys1 (PSZ) (G.ENE13) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.NW3) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22]: data object L2Sys1 (PSZ) (G.ENE4) in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].fan_system: data object L2Sys1 (PSZ) (G.ENE4) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.ENE4) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].heating_system: data object L2Sys1 (PSZ) (G.ENE4) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].cooling_system: data object L2Sys1 (PSZ) (G.ENE4) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.SE1) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23]: data object L2Sys1 (PSZ) (G.N2) in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].fan_system: data object L2Sys1 (PSZ) (G.N2) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.N2) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].heating_system: data object L2Sys1 (PSZ) (G.N2) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].cooling_system: data object L2Sys1 (PSZ) (G.N2) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSE6) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24]: data object L2Sys1 (PSZ) (G.NE3) in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].fan_system: data object L2Sys1 (PSZ) (G.NE3) FanSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.NE3) SupplyFan in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].heating_system: data object L2Sys1 (PSZ) (G.NE3) HeatSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].cooling_system: data object L2Sys1 (PSZ) (G.NE3) CoolSys in index context does not match the one L1-2Sys1 (PSZ) (G.SSW5) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25]: data object L2Sys1 (PSZ) (G.NNE1) in index context does not match the one L1Sys1 (PSZ) (G.ENE13) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].fan_system: data object L2Sys1 (PSZ) (G.NNE1) FanSys in index context does not match the one L1Sys1 (PSZ) (G.ENE13) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.NNE1) SupplyFan in index context does not match the one L1Sys1 (PSZ) (G.ENE13) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].heating_system: data object L2Sys1 (PSZ) (G.NNE1) HeatSys in index context does not match the one L1Sys1 (PSZ) (G.ENE13) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].cooling_system: data object L2Sys1 (PSZ) (G.NNE1) CoolSys in index context does not match the one L1Sys1 (PSZ) (G.ENE13) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26]: data object L2Sys1 (PSZ) (G.S15) in index context does not match the one L1Sys1 (PSZ) (G.W5) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].fan_system: data object L2Sys1 (PSZ) (G.S15) FanSys in index context does not match the one L1Sys1 (PSZ) (G.W5) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.S15) SupplyFan in index context does not match the one L1Sys1 (PSZ) (G.W5) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].heating_system: data object L2Sys1 (PSZ) (G.S15) HeatSys in index context does not match the one L1Sys1 (PSZ) (G.W5) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].cooling_system: data object L2Sys1 (PSZ) (G.S15) CoolSys in index context does not match the one L1Sys1 (PSZ) (G.W5) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27]: data object L2Sys1 (PSZ) (G.SE5) in index context does not match the one L1Sys1 (PSZ) (G.WSW20) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].fan_system: data object L2Sys1 (PSZ) (G.SE5) FanSys in index context does not match the one L1Sys1 (PSZ) (G.WSW20) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.SE5) SupplyFan in index context does not match the one L1Sys1 (PSZ) (G.WSW20) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].heating_system: data object L2Sys1 (PSZ) (G.SE5) HeatSys in index context does not match the one L1Sys1 (PSZ) (G.WSW20) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].cooling_system: data object L2Sys1 (PSZ) (G.SE5) CoolSys in index context does not match the one L1Sys1 (PSZ) (G.WSW20) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28]: data object L2Sys1 (PSZ) (G.SSE18) in index context does not match the one L2 Corridor 2 PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].fan_system: data object L2Sys1 (PSZ) (G.SSE18) FanSys in index context does not match the one L2 Corridor 2 PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.SSE18) SupplyFan in index context does not match the one L2 Corridor 2 PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].heating_system: data object L2Sys1 (PSZ) (G.SSE18) HeatSys in index context does not match the one L2 Corridor 2 PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].cooling_system: data object L2Sys1 (PSZ) (G.SSE18) CoolSys in index context does not match the one L2 Corridor 2 PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29]: data object L2Sys1 (PSZ) (G.WSW12) in index context does not match the one L2 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].fan_system: data object L2Sys1 (PSZ) (G.WSW12) FanSys in index context does not match the one L2 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.WSW12) SupplyFan in index context does not match the one L2 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].heating_system: data object L2Sys1 (PSZ) (G.WSW12) HeatSys in index context does not match the one L2 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].cooling_system: data object L2Sys1 (PSZ) (G.WSW12) CoolSys in index context does not match the one L2 Corridor PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30]: data object L2Sys1 (PSZ) (G.WSW8) in index context does not match the one L2-2 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].fan_system: data object L2Sys1 (PSZ) (G.WSW8) FanSys in index context does not match the one L2-2 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].fan_system.supply_fans[0]: data object L2Sys1 (PSZ) (G.WSW8) SupplyFan in index context does not match the one L2-2 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].heating_system: data object L2Sys1 (PSZ) (G.WSW8) HeatSys in index context does not match the one L2-2 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].cooling_system: data object L2Sys1 (PSZ) (G.WSW8) CoolSys in index context does not match the one L2-2 Corridor PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31]: data object L3 Corridor 2 PSZ in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].fan_system: data object L3 Corridor 2 PSZ FanSys in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].fan_system.supply_fans[0]: data object L3 Corridor 2 PSZ SupplyFan in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].heating_system: data object L3 Corridor 2 PSZ HeatSys in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].cooling_system: data object L3 Corridor 2 PSZ CoolSys in index context does not match the one L2-2Sys1 (PSZ) (G.SE1) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32]: data object L3 Corridor PSZ in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].fan_system: data object L3 Corridor PSZ FanSys in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].fan_system.supply_fans[0]: data object L3 Corridor PSZ SupplyFan in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].heating_system: data object L3 Corridor PSZ HeatSys in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].cooling_system: data object L3 Corridor PSZ CoolSys in index context does not match the one L2-2Sys1 (PSZ) (G.SSE5) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33]: data object L3-2 Corridor PSZ in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].fan_system: data object L3-2 Corridor PSZ FanSys in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].fan_system.supply_fans[0]: data object L3-2 Corridor PSZ SupplyFan in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].heating_system: data object L3-2 Corridor PSZ HeatSys in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].cooling_system: data object L3-2 Corridor PSZ CoolSys in index context does not match the one L2-2Sys2 (PSZ) (G.NNW3) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34]: data object L3-2Sys1 (PSZ) (G.NNW5) in index context does not match the one L2Sys1 (PSZ) (G.ENE13) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].fan_system: data object L3-2Sys1 (PSZ) (G.NNW5) FanSys in index context does not match the one L2Sys1 (PSZ) (G.ENE13) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.NNW5) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.ENE13) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].heating_system: data object L3-2Sys1 (PSZ) (G.NNW5) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.ENE13) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].cooling_system: data object L3-2Sys1 (PSZ) (G.NNW5) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.ENE13) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35]: data object L3-2Sys1 (PSZ) (G.SE2) in index context does not match the one L2Sys1 (PSZ) (G.ENE4) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].fan_system: data object L3-2Sys1 (PSZ) (G.SE2) FanSys in index context does not match the one L2Sys1 (PSZ) (G.ENE4) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.SE2) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.ENE4) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].heating_system: data object L3-2Sys1 (PSZ) (G.SE2) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.ENE4) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].cooling_system: data object L3-2Sys1 (PSZ) (G.SE2) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.ENE4) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36]: data object L3-2Sys1 (PSZ) (G.SSE6) in index context does not match the one L2Sys1 (PSZ) (G.N2) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].fan_system: data object L3-2Sys1 (PSZ) (G.SSE6) FanSys in index context does not match the one L2Sys1 (PSZ) (G.N2) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.SSE6) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.N2) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].heating_system: data object L3-2Sys1 (PSZ) (G.SSE6) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.N2) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].cooling_system: data object L3-2Sys1 (PSZ) (G.SSE6) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.N2) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37]: data object L3-2Sys1 (PSZ) (G.SSW1) in index context does not match the one L2Sys1 (PSZ) (G.NE3) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].fan_system: data object L3-2Sys1 (PSZ) (G.SSW1) FanSys in index context does not match the one L2Sys1 (PSZ) (G.NE3) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (G.SSW1) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.NE3) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].heating_system: data object L3-2Sys1 (PSZ) (G.SSW1) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.NE3) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].cooling_system: data object L3-2Sys1 (PSZ) (G.SSW1) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.NE3) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38]: data object L3-2Sys1 (PSZ) (M.NNW11) in index context does not match the one L2Sys1 (PSZ) (G.NNE1) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].fan_system: data object L3-2Sys1 (PSZ) (M.NNW11) FanSys in index context does not match the one L2Sys1 (PSZ) (G.NNE1) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.NNW11) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.NNE1) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].heating_system: data object L3-2Sys1 (PSZ) (M.NNW11) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.NNE1) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].cooling_system: data object L3-2Sys1 (PSZ) (M.NNW11) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.NNE1) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39]: data object L3-2Sys1 (PSZ) (M.SE8) in index context does not match the one L2Sys1 (PSZ) (G.S15) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].fan_system: data object L3-2Sys1 (PSZ) (M.SE8) FanSys in index context does not match the one L2Sys1 (PSZ) (G.S15) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.SE8) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.S15) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].heating_system: data object L3-2Sys1 (PSZ) (M.SE8) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.S15) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].cooling_system: data object L3-2Sys1 (PSZ) (M.SE8) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.S15) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40]: data object L3-2Sys1 (PSZ) (M.SSE12) in index context does not match the one L2Sys1 (PSZ) (G.SE5) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].fan_system: data object L3-2Sys1 (PSZ) (M.SSE12) FanSys in index context does not match the one L2Sys1 (PSZ) (G.SE5) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.SSE12) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.SE5) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].heating_system: data object L3-2Sys1 (PSZ) (M.SSE12) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.SE5) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].cooling_system: data object L3-2Sys1 (PSZ) (M.SSE12) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.SE5) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41]: data object L3-2Sys1 (PSZ) (M.SSW7) in index context does not match the one L2Sys1 (PSZ) (G.SSE18) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].fan_system: data object L3-2Sys1 (PSZ) (M.SSW7) FanSys in index context does not match the one L2Sys1 (PSZ) (G.SSE18) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (M.SSW7) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.SSE18) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].heating_system: data object L3-2Sys1 (PSZ) (M.SSW7) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.SSE18) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].cooling_system: data object L3-2Sys1 (PSZ) (M.SSW7) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.SSE18) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42]: data object L3-2Sys1 (PSZ) (T.NNW17) in index context does not match the one L2Sys1 (PSZ) (G.WSW12) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].fan_system: data object L3-2Sys1 (PSZ) (T.NNW17) FanSys in index context does not match the one L2Sys1 (PSZ) (G.WSW12) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (T.NNW17) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.WSW12) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].heating_system: data object L3-2Sys1 (PSZ) (T.NNW17) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.WSW12) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].cooling_system: data object L3-2Sys1 (PSZ) (T.NNW17) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.WSW12) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43]: data object L3-2Sys1 (PSZ) (T.SE14) in index context does not match the one L2Sys1 (PSZ) (G.WSW8) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].fan_system: data object L3-2Sys1 (PSZ) (T.SE14) FanSys in index context does not match the one L2Sys1 (PSZ) (G.WSW8) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (T.SE14) SupplyFan in index context does not match the one L2Sys1 (PSZ) (G.WSW8) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].heating_system: data object L3-2Sys1 (PSZ) (T.SE14) HeatSys in index context does not match the one L2Sys1 (PSZ) (G.WSW8) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].cooling_system: data object L3-2Sys1 (PSZ) (T.SE14) CoolSys in index context does not match the one L2Sys1 (PSZ) (G.WSW8) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44]: data object L3-2Sys1 (PSZ) (T.SSW13) in index context does not match the one L3 Corridor 2 PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].fan_system: data object L3-2Sys1 (PSZ) (T.SSW13) FanSys in index context does not match the one L3 Corridor 2 PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].fan_system.supply_fans[0]: data object L3-2Sys1 (PSZ) (T.SSW13) SupplyFan in index context does not match the one L3 Corridor 2 PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].heating_system: data object L3-2Sys1 (PSZ) (T.SSW13) HeatSys in index context does not match the one L3 Corridor 2 PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].cooling_system: data object L3-2Sys1 (PSZ) (T.SSW13) CoolSys in index context does not match the one L3 Corridor 2 PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45]: data object L3Sys1 (PSZ) (G.ENE1) in index context does not match the one L3 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].fan_system: data object L3Sys1 (PSZ) (G.ENE1) FanSys in index context does not match the one L3 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.ENE1) SupplyFan in index context does not match the one L3 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].heating_system: data object L3Sys1 (PSZ) (G.ENE1) HeatSys in index context does not match the one L3 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].cooling_system: data object L3Sys1 (PSZ) (G.ENE1) CoolSys in index context does not match the one L3 Corridor PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46]: data object L3Sys1 (PSZ) (G.ENE13) in index context does not match the one L3-2 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].fan_system: data object L3Sys1 (PSZ) (G.ENE13) FanSys in index context does not match the one L3-2 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.ENE13) SupplyFan in index context does not match the one L3-2 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].heating_system: data object L3Sys1 (PSZ) (G.ENE13) HeatSys in index context does not match the one L3-2 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].cooling_system: data object L3Sys1 (PSZ) (G.ENE13) CoolSys in index context does not match the one L3-2 Corridor PSZ CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47]: data object L3Sys1 (PSZ) (G.N15) in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].fan_system: data object L3Sys1 (PSZ) (G.N15) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.N15) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].heating_system: data object L3Sys1 (PSZ) (G.N15) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].cooling_system: data object L3Sys1 (PSZ) (G.N15) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.NNW5) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48]: data object L3Sys1 (PSZ) (G.NE3) in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].fan_system: data object L3Sys1 (PSZ) (G.NE3) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.NE3) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].heating_system: data object L3Sys1 (PSZ) (G.NE3) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].cooling_system: data object L3Sys1 (PSZ) (G.NE3) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.SE2) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49]: data object L3Sys1 (PSZ) (G.NW5) in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].fan_system: data object L3Sys1 (PSZ) (G.NW5) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.NW5) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].heating_system: data object L3Sys1 (PSZ) (G.NW5) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].cooling_system: data object L3Sys1 (PSZ) (G.NW5) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSE6) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50]: data object L3Sys1 (PSZ) (G.S17) in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].fan_system: data object L3Sys1 (PSZ) (G.S17) FanSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.S17) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].heating_system: data object L3Sys1 (PSZ) (G.S17) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].cooling_system: data object L3Sys1 (PSZ) (G.S17) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (G.SSW1) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51]: data object L3Sys1 (PSZ) (G.SE2) in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].fan_system: data object L3Sys1 (PSZ) (G.SE2) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.SE2) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].heating_system: data object L3Sys1 (PSZ) (G.SE2) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].cooling_system: data object L3Sys1 (PSZ) (G.SE2) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.NNW11) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52]: data object L3Sys1 (PSZ) (G.SSE16) in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].fan_system: data object L3Sys1 (PSZ) (G.SSE16) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.SSE16) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].heating_system: data object L3Sys1 (PSZ) (G.SSE16) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].cooling_system: data object L3Sys1 (PSZ) (G.SSE16) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.SE8) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53]: data object L3Sys1 (PSZ) (G.WSW14) in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].fan_system: data object L3Sys1 (PSZ) (G.WSW14) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.WSW14) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].heating_system: data object L3Sys1 (PSZ) (G.WSW14) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].cooling_system: data object L3Sys1 (PSZ) (G.WSW14) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSE12) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54]: data object L3Sys1 (PSZ) (G.WSW7) in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].fan_system: data object L3Sys1 (PSZ) (G.WSW7) FanSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (G.WSW7) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].heating_system: data object L3Sys1 (PSZ) (G.WSW7) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].cooling_system: data object L3Sys1 (PSZ) (G.WSW7) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (M.SSW7) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55]: data object L3Sys1 (PSZ) (M.ENE18) in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].fan_system: data object L3Sys1 (PSZ) (M.ENE18) FanSys in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.ENE18) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].heating_system: data object L3Sys1 (PSZ) (M.ENE18) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].cooling_system: data object L3Sys1 (PSZ) (M.ENE18) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (T.NNW17) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56]: data object L3Sys1 (PSZ) (M.ENE30) in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].fan_system: data object L3Sys1 (PSZ) (M.ENE30) FanSys in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.ENE30) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].heating_system: data object L3Sys1 (PSZ) (M.ENE30) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].cooling_system: data object L3Sys1 (PSZ) (M.ENE30) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (T.SE14) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57]: data object L3Sys1 (PSZ) (M.N32) in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].fan_system: data object L3Sys1 (PSZ) (M.N32) FanSys in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.N32) SupplyFan in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].heating_system: data object L3Sys1 (PSZ) (M.N32) HeatSys in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].cooling_system: data object L3Sys1 (PSZ) (M.N32) CoolSys in index context does not match the one L3-2Sys1 (PSZ) (T.SSW13) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58]: data object L3Sys1 (PSZ) (M.NE20) in index context does not match the one L3Sys1 (PSZ) (G.ENE1) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system: data object L3Sys1 (PSZ) (M.NE20) FanSys in index context does not match the one L3Sys1 (PSZ) (G.ENE1) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.NE20) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.ENE1) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.NE20) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.ENE1) AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].heating_system: data object L3Sys1 (PSZ) (M.NE20) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.ENE1) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].cooling_system: data object L3Sys1 (PSZ) (M.NE20) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.ENE1) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59]: data object L3Sys1 (PSZ) (M.NW22) in index context does not match the one L3Sys1 (PSZ) (G.ENE13) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].fan_system: data object L3Sys1 (PSZ) (M.NW22) FanSys in index context does not match the one L3Sys1 (PSZ) (G.ENE13) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.NW22) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.ENE13) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].heating_system: data object L3Sys1 (PSZ) (M.NW22) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.ENE13) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].cooling_system: data object L3Sys1 (PSZ) (M.NW22) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.ENE13) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60]: data object L3Sys1 (PSZ) (M.S34) in index context does not match the one L3Sys1 (PSZ) (G.N15) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].fan_system: data object L3Sys1 (PSZ) (M.S34) FanSys in index context does not match the one L3Sys1 (PSZ) (G.N15) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.S34) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.N15) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].heating_system: data object L3Sys1 (PSZ) (M.S34) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.N15) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].cooling_system: data object L3Sys1 (PSZ) (M.S34) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.N15) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61]: data object L3Sys1 (PSZ) (M.SE19) in index context does not match the one L3Sys1 (PSZ) (G.NE3) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system: data object L3Sys1 (PSZ) (M.SE19) FanSys in index context does not match the one L3Sys1 (PSZ) (G.NE3) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.SE19) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.NE3) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.SE19) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.NE3) AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].heating_system: data object L3Sys1 (PSZ) (M.SE19) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.NE3) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].cooling_system: data object L3Sys1 (PSZ) (M.SE19) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.NE3) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62]: data object L3Sys1 (PSZ) (M.SSE33) in index context does not match the one L3Sys1 (PSZ) (G.NW5) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system: data object L3Sys1 (PSZ) (M.SSE33) FanSys in index context does not match the one L3Sys1 (PSZ) (G.NW5) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.SSE33) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.NW5) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.SSE33) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.NW5) AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].heating_system: data object L3Sys1 (PSZ) (M.SSE33) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.NW5) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].cooling_system: data object L3Sys1 (PSZ) (M.SSE33) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.NW5) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63]: data object L3Sys1 (PSZ) (M.WSW24) in index context does not match the one L3Sys1 (PSZ) (G.S17) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].fan_system: data object L3Sys1 (PSZ) (M.WSW24) FanSys in index context does not match the one L3Sys1 (PSZ) (G.S17) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.WSW24) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.S17) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].heating_system: data object L3Sys1 (PSZ) (M.WSW24) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.S17) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].cooling_system: data object L3Sys1 (PSZ) (M.WSW24) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.S17) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64]: data object L3Sys1 (PSZ) (M.WSW31) in index context does not match the one L3Sys1 (PSZ) (G.SE2) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system: data object L3Sys1 (PSZ) (M.WSW31) FanSys in index context does not match the one L3Sys1 (PSZ) (G.SE2) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (M.WSW31) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.SE2) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system.air_economizer: data object L3Sys1 (PSZ) (M.WSW31) AirEconomizer in index context does not match the one L3Sys1 (PSZ) (G.SE2) AirEconomizer in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].heating_system: data object L3Sys1 (PSZ) (M.WSW31) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.SE2) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].cooling_system: data object L3Sys1 (PSZ) (M.WSW31) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.SE2) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65]: data object L3Sys1 (PSZ) (T.ENE35) in index context does not match the one L3Sys1 (PSZ) (G.SSE16) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].fan_system: data object L3Sys1 (PSZ) (T.ENE35) FanSys in index context does not match the one L3Sys1 (PSZ) (G.SSE16) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.ENE35) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.SSE16) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].heating_system: data object L3Sys1 (PSZ) (T.ENE35) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.SSE16) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].cooling_system: data object L3Sys1 (PSZ) (T.ENE35) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.SSE16) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66]: data object L3Sys1 (PSZ) (T.ENE47) in index context does not match the one L3Sys1 (PSZ) (G.WSW14) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].fan_system: data object L3Sys1 (PSZ) (T.ENE47) FanSys in index context does not match the one L3Sys1 (PSZ) (G.WSW14) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.ENE47) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.WSW14) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].heating_system: data object L3Sys1 (PSZ) (T.ENE47) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.WSW14) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].cooling_system: data object L3Sys1 (PSZ) (T.ENE47) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.WSW14) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67]: data object L3Sys1 (PSZ) (T.N49) in index context does not match the one L3Sys1 (PSZ) (G.WSW7) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].fan_system: data object L3Sys1 (PSZ) (T.N49) FanSys in index context does not match the one L3Sys1 (PSZ) (G.WSW7) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.N49) SupplyFan in index context does not match the one L3Sys1 (PSZ) (G.WSW7) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].heating_system: data object L3Sys1 (PSZ) (T.N49) HeatSys in index context does not match the one L3Sys1 (PSZ) (G.WSW7) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].cooling_system: data object L3Sys1 (PSZ) (T.N49) CoolSys in index context does not match the one L3Sys1 (PSZ) (G.WSW7) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68]: data object L3Sys1 (PSZ) (T.NE37) in index context does not match the one L3Sys1 (PSZ) (M.ENE18) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].fan_system: data object L3Sys1 (PSZ) (T.NE37) FanSys in index context does not match the one L3Sys1 (PSZ) (M.ENE18) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.NE37) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.ENE18) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].heating_system: data object L3Sys1 (PSZ) (T.NE37) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.ENE18) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].cooling_system: data object L3Sys1 (PSZ) (T.NE37) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.ENE18) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69]: data object L3Sys1 (PSZ) (T.NW39) in index context does not match the one L3Sys1 (PSZ) (M.ENE30) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].fan_system: data object L3Sys1 (PSZ) (T.NW39) FanSys in index context does not match the one L3Sys1 (PSZ) (M.ENE30) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.NW39) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.ENE30) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].heating_system: data object L3Sys1 (PSZ) (T.NW39) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.ENE30) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].cooling_system: data object L3Sys1 (PSZ) (T.NW39) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.ENE30) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70]: data object L3Sys1 (PSZ) (T.S51) in index context does not match the one L3Sys1 (PSZ) (M.N32) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].fan_system: data object L3Sys1 (PSZ) (T.S51) FanSys in index context does not match the one L3Sys1 (PSZ) (M.N32) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.S51) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.N32) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].heating_system: data object L3Sys1 (PSZ) (T.S51) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.N32) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].cooling_system: data object L3Sys1 (PSZ) (T.S51) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.N32) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71]: data object L3Sys1 (PSZ) (T.SE36) in index context does not match the one L3Sys1 (PSZ) (M.NE20) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].fan_system: data object L3Sys1 (PSZ) (T.SE36) FanSys in index context does not match the one L3Sys1 (PSZ) (M.NE20) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.SE36) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.NE20) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].heating_system: data object L3Sys1 (PSZ) (T.SE36) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.NE20) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].cooling_system: data object L3Sys1 (PSZ) (T.SE36) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.NE20) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72]: data object L3Sys1 (PSZ) (T.SSE50) in index context does not match the one L3Sys1 (PSZ) (M.NW22) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].fan_system: data object L3Sys1 (PSZ) (T.SSE50) FanSys in index context does not match the one L3Sys1 (PSZ) (M.NW22) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.SSE50) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.NW22) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].heating_system: data object L3Sys1 (PSZ) (T.SSE50) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.NW22) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].cooling_system: data object L3Sys1 (PSZ) (T.SSE50) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.NW22) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73]: data object L3Sys1 (PSZ) (T.WSW41) in index context does not match the one L3Sys1 (PSZ) (M.S34) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].fan_system: data object L3Sys1 (PSZ) (T.WSW41) FanSys in index context does not match the one L3Sys1 (PSZ) (M.S34) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.WSW41) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.S34) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].heating_system: data object L3Sys1 (PSZ) (T.WSW41) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.S34) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].cooling_system: data object L3Sys1 (PSZ) (T.WSW41) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.S34) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74]: data object L3Sys1 (PSZ) (T.WSW48) in index context does not match the one L3Sys1 (PSZ) (M.SE19) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].fan_system: data object L3Sys1 (PSZ) (T.WSW48) FanSys in index context does not match the one L3Sys1 (PSZ) (M.SE19) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].fan_system.supply_fans[0]: data object L3Sys1 (PSZ) (T.WSW48) SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.SE19) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].heating_system: data object L3Sys1 (PSZ) (T.WSW48) HeatSys in index context does not match the one L3Sys1 (PSZ) (M.SE19) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].cooling_system: data object L3Sys1 (PSZ) (T.WSW48) CoolSys in index context does not match the one L3Sys1 (PSZ) (M.SE19) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75]: data object L4 Corridor 2 PSZ in index context does not match the one L3Sys1 (PSZ) (M.SSE33) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].fan_system: data object L4 Corridor 2 PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (M.SSE33) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].fan_system.supply_fans[0]: data object L4 Corridor 2 PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.SSE33) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].heating_system: data object L4 Corridor 2 PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (M.SSE33) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].cooling_system: data object L4 Corridor 2 PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (M.SSE33) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76]: data object L4 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (M.WSW24) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].fan_system: data object L4 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (M.WSW24) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].fan_system.supply_fans[0]: data object L4 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.WSW24) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].heating_system: data object L4 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (M.WSW24) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].cooling_system: data object L4 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (M.WSW24) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77]: data object L4-2 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (M.WSW31) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].fan_system: data object L4-2 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (M.WSW31) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].fan_system.supply_fans[0]: data object L4-2 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (M.WSW31) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].heating_system: data object L4-2 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (M.WSW31) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].cooling_system: data object L4-2 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (M.WSW31) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78]: data object L5 Corridor 2 PSZ in index context does not match the one L3Sys1 (PSZ) (T.ENE35) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].fan_system: data object L5 Corridor 2 PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.ENE35) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].fan_system.supply_fans[0]: data object L5 Corridor 2 PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.ENE35) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].heating_system: data object L5 Corridor 2 PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.ENE35) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].cooling_system: data object L5 Corridor 2 PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.ENE35) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79]: data object L5 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (T.ENE47) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].fan_system: data object L5 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.ENE47) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].fan_system.supply_fans[0]: data object L5 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.ENE47) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].heating_system: data object L5 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.ENE47) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].cooling_system: data object L5 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.ENE47) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80]: data object L5-2 Corridor PSZ in index context does not match the one L3Sys1 (PSZ) (T.N49) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].fan_system: data object L5-2 Corridor PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.N49) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].fan_system.supply_fans[0]: data object L5-2 Corridor PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.N49) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].heating_system: data object L5-2 Corridor PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.N49) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].cooling_system: data object L5-2 Corridor PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.N49) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81]: data object LAST APT ZONE in index context does not match the one L3Sys1 (PSZ) (T.NE37) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].fan_system: data object LAST APT ZONE FanSys in index context does not match the one L3Sys1 (PSZ) (T.NE37) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].fan_system.supply_fans[0]: data object LAST APT ZONE SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.NE37) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].heating_system: data object LAST APT ZONE HeatSys in index context does not match the one L3Sys1 (PSZ) (T.NE37) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].cooling_system: data object LAST APT ZONE CoolSys in index context does not match the one L3Sys1 (PSZ) (T.NE37) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82]: data object Lobby PSZ in index context does not match the one L3Sys1 (PSZ) (T.NW39) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].fan_system: data object Lobby PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.NW39) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].fan_system.supply_fans[0]: data object Lobby PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.NW39) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].heating_system: data object Lobby PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.NW39) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].cooling_system: data object Lobby PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.NW39) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83]: data object Lobby PSZ 2 in index context does not match the one L3Sys1 (PSZ) (T.S51) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].fan_system: data object Lobby PSZ 2 FanSys in index context does not match the one L3Sys1 (PSZ) (T.S51) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].fan_system.supply_fans[0]: data object Lobby PSZ 2 SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.S51) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].heating_system: data object Lobby PSZ 2 HeatSys in index context does not match the one L3Sys1 (PSZ) (T.S51) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].cooling_system: data object Lobby PSZ 2 CoolSys in index context does not match the one L3Sys1 (PSZ) (T.S51) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84]: data object Main entr PSZ in index context does not match the one L3Sys1 (PSZ) (T.SE36) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].fan_system: data object Main entr PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.SE36) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].fan_system.supply_fans[0]: data object Main entr PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.SE36) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].heating_system: data object Main entr PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.SE36) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].cooling_system: data object Main entr PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.SE36) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85]: data object Retail PSZ in index context does not match the one L3Sys1 (PSZ) (T.SSE50) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].fan_system: data object Retail PSZ FanSys in index context does not match the one L3Sys1 (PSZ) (T.SSE50) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].fan_system.supply_fans[0]: data object Retail PSZ SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.SSE50) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].heating_system: data object Retail PSZ HeatSys in index context does not match the one L3Sys1 (PSZ) (T.SSE50) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].cooling_system: data object Retail PSZ CoolSys in index context does not match the one L3Sys1 (PSZ) (T.SSE50) CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86]: data object S3 Sys (UHT) in index context does not match the one L3Sys1 (PSZ) (T.WSW41) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].fan_system: data object S3 Sys (UHT) FanSys in index context does not match the one L3Sys1 (PSZ) (T.WSW41) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan in index context does not match the one L3Sys1 (PSZ) (T.WSW41) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].heating_system: data object S3 Sys (UHT) HeatSys in index context does not match the one L3Sys1 (PSZ) (T.WSW41) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87]: data object S3 Sys (UHT) - B-Elevator 4 zn in index context does not match the one L3Sys1 (PSZ) (T.WSW48) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].fan_system: data object S3 Sys (UHT) FanSys--12 in index context does not match the one L3Sys1 (PSZ) (T.WSW48) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--12 in index context does not match the one L3Sys1 (PSZ) (T.WSW48) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].heating_system: data object S3 Sys (UHT) HeatSys--12 in index context does not match the one L3Sys1 (PSZ) (T.WSW48) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88]: data object S3 Sys (UHT) - B-Stair B zn in index context does not match the one L4 Corridor 2 PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].fan_system: data object S3 Sys (UHT) FanSys--11 in index context does not match the one L4 Corridor 2 PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--11 in index context does not match the one L4 Corridor 2 PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].heating_system: data object S3 Sys (UHT) HeatSys--11 in index context does not match the one L4 Corridor 2 PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89]: data object S3 Sys (UHT) - B-Storage zn in index context does not match the one L4 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].fan_system: data object S3 Sys (UHT) FanSys--5 in index context does not match the one L4 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--5 in index context does not match the one L4 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].heating_system: data object S3 Sys (UHT) HeatSys--5 in index context does not match the one L4 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90]: data object S3 Sys (UHT) - Gas Rm zn in index context does not match the one L4-2 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].fan_system: data object S3 Sys (UHT) FanSys--4 in index context does not match the one L4-2 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--4 in index context does not match the one L4-2 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].heating_system: data object S3 Sys (UHT) HeatSys--4 in index context does not match the one L4-2 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91]: data object S3 Sys (UHT) - L1 - Storage zn in index context does not match the one L5 Corridor 2 PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].fan_system: data object S3 Sys (UHT) FanSys--6 in index context does not match the one L5 Corridor 2 PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--6 in index context does not match the one L5 Corridor 2 PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].heating_system: data object S3 Sys (UHT) HeatSys--6 in index context does not match the one L5 Corridor 2 PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92]: data object S3 Sys (UHT) - L1 Elec/Meter Rm zn in index context does not match the one L5 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].fan_system: data object S3 Sys (UHT) FanSys--2 in index context does not match the one L5 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--2 in index context does not match the one L5 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].heating_system: data object S3 Sys (UHT) HeatSys--2 in index context does not match the one L5 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93]: data object S3 Sys (UHT) - L1 Elevator 3 zn in index context does not match the one L5-2 Corridor PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93].fan_system: data object S3 Sys (UHT) FanSys--14 in index context does not match the one L5-2 Corridor PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--14 in index context does not match the one L5-2 Corridor PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[93].heating_system: data object S3 Sys (UHT) HeatSys--14 in index context does not match the one L5-2 Corridor PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94]: data object S3 Sys (UHT) - L1 Main Electrical Rm zn in index context does not match the one LAST APT ZONE in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].fan_system: data object S3 Sys (UHT) FanSys--8 in index context does not match the one LAST APT ZONE FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--8 in index context does not match the one LAST APT ZONE SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].heating_system: data object S3 Sys (UHT) HeatSys--8 in index context does not match the one LAST APT ZONE HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95]: data object S3 Sys (UHT) - L1 Mech 2 zn in index context does not match the one Lobby PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].fan_system: data object S3 Sys (UHT) FanSys--1 in index context does not match the one Lobby PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--1 in index context does not match the one Lobby PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].heating_system: data object S3 Sys (UHT) HeatSys--1 in index context does not match the one Lobby PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96]: data object S3 Sys (UHT) - L1 Mech zn in index context does not match the one Lobby PSZ 2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].fan_system: data object S3 Sys (UHT) FanSys--3 in index context does not match the one Lobby PSZ 2 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--3 in index context does not match the one Lobby PSZ 2 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].heating_system: data object S3 Sys (UHT) HeatSys--3 in index context does not match the one Lobby PSZ 2 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97]: data object S3 Sys (UHT) - L1-2 Stair B zn in index context does not match the one Main entr PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97].fan_system: data object S3 Sys (UHT) FanSys--16 in index context does not match the one Main entr PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--16 in index context does not match the one Main entr PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[97].heating_system: data object S3 Sys (UHT) HeatSys--16 in index context does not match the one Main entr PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98]: data object S3 Sys (UHT) - L1-Stair A zn in index context does not match the one Retail PSZ in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].fan_system: data object S3 Sys (UHT) FanSys--13 in index context does not match the one Retail PSZ FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--13 in index context does not match the one Retail PSZ SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].heating_system: data object S3 Sys (UHT) HeatSys--13 in index context does not match the one Retail PSZ HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99]: data object S3 Sys (UHT) - L2 Stair A zn in index context does not match the one S3 Sys (UHT) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].fan_system: data object S3 Sys (UHT) FanSys--18 in index context does not match the one S3 Sys (UHT) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--18 in index context does not match the one S3 Sys (UHT) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].heating_system: data object S3 Sys (UHT) HeatSys--18 in index context does not match the one S3 Sys (UHT) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100]: data object S3 Sys (UHT) - L2 Stairs zn in index context does not match the one S3 Sys (UHT) - B-Elevator 4 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].fan_system: data object S3 Sys (UHT) FanSys--17 in index context does not match the one S3 Sys (UHT) FanSys--6 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--17 in index context does not match the one S3 Sys (UHT) SupplyFan--6 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].heating_system: data object S3 Sys (UHT) HeatSys--17 in index context does not match the one S3 Sys (UHT) HeatSys--6 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101]: data object S3 Sys (UHT) - L2-2 Stair B zn in index context does not match the one S3 Sys (UHT) - B-Stair B zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101].fan_system: data object S3 Sys (UHT) FanSys--10 in index context does not match the one S3 Sys (UHT) FanSys--5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--10 in index context does not match the one S3 Sys (UHT) SupplyFan--5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[101].heating_system: data object S3 Sys (UHT) HeatSys--10 in index context does not match the one S3 Sys (UHT) HeatSys--5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102]: data object S3 Sys (UHT) - L3 Stair A zn in index context does not match the one S3 Sys (UHT) - L1 Elec/Meter Rm zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102].fan_system: data object S3 Sys (UHT) FanSys--19 in index context does not match the one S3 Sys (UHT) FanSys--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--19 in index context does not match the one S3 Sys (UHT) SupplyFan--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[102].heating_system: data object S3 Sys (UHT) HeatSys--19 in index context does not match the one S3 Sys (UHT) HeatSys--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103]: data object S3 Sys (UHT) - L3 Stairs zn in index context does not match the one S3 Sys (UHT) - L1 Mech 2 zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].fan_system: data object S3 Sys (UHT) FanSys--20 in index context does not match the one S3 Sys (UHT) FanSys--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--20 in index context does not match the one S3 Sys (UHT) SupplyFan--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].heating_system: data object S3 Sys (UHT) HeatSys--20 in index context does not match the one S3 Sys (UHT) HeatSys--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104]: data object S3 Sys (UHT) - L3-2 Stair B zn in index context does not match the one S3 Sys (UHT) - L1 Mech zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104].fan_system: data object S3 Sys (UHT) FanSys--25 in index context does not match the one S3 Sys (UHT) FanSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--25 in index context does not match the one S3 Sys (UHT) SupplyFan--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[104].heating_system: data object S3 Sys (UHT) HeatSys--25 in index context does not match the one S3 Sys (UHT) HeatSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105]: data object S3 Sys (UHT) - L4 Stair A zn in index context does not match the one S3 Sys (UHT) - L1-2 Stair B zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105].fan_system: data object S3 Sys (UHT) FanSys--21 in index context does not match the one S3 Sys (UHT) FanSys--8 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--21 in index context does not match the one S3 Sys (UHT) SupplyFan--8 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[105].heating_system: data object S3 Sys (UHT) HeatSys--21 in index context does not match the one S3 Sys (UHT) HeatSys--8 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106]: data object S3 Sys (UHT) - L4 Stairs zn in index context does not match the one S3 Sys (UHT) - L1-Stair A zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].fan_system: data object S3 Sys (UHT) FanSys--22 in index context does not match the one S3 Sys (UHT) FanSys--7 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--22 in index context does not match the one S3 Sys (UHT) SupplyFan--7 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].heating_system: data object S3 Sys (UHT) HeatSys--22 in index context does not match the one S3 Sys (UHT) HeatSys--7 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107]: data object S3 Sys (UHT) - L4-2 Stair B zn in index context does not match the one S3 Sys (UHT) - L2 Stair A zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107].fan_system: data object S3 Sys (UHT) FanSys--26 in index context does not match the one S3 Sys (UHT) FanSys--10 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--26 in index context does not match the one S3 Sys (UHT) SupplyFan--10 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[107].heating_system: data object S3 Sys (UHT) HeatSys--26 in index context does not match the one S3 Sys (UHT) HeatSys--10 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108]: data object S3 Sys (UHT) - L5 Stair A zn in index context does not match the one S3 Sys (UHT) - L2 Stairs zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].fan_system: data object S3 Sys (UHT) FanSys--23 in index context does not match the one S3 Sys (UHT) FanSys--9 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--23 in index context does not match the one S3 Sys (UHT) SupplyFan--9 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].heating_system: data object S3 Sys (UHT) HeatSys--23 in index context does not match the one S3 Sys (UHT) HeatSys--9 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109]: data object S3 Sys (UHT) - L5 Stairs zn in index context does not match the one S3 Sys (UHT) - L2-2 Stair B zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].fan_system: data object S3 Sys (UHT) FanSys--24 in index context does not match the one S3 Sys (UHT) FanSys--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--24 in index context does not match the one S3 Sys (UHT) SupplyFan--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].heating_system: data object S3 Sys (UHT) HeatSys--24 in index context does not match the one S3 Sys (UHT) HeatSys--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110]: data object S3 Sys (UHT) - L5-2 Stair B zn in index context does not match the one S3 Sys (UHT) - L3 Stair A zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].fan_system: data object S3 Sys (UHT) FanSys--27 in index context does not match the one S3 Sys (UHT) FanSys--11 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--27 in index context does not match the one S3 Sys (UHT) SupplyFan--11 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].heating_system: data object S3 Sys (UHT) HeatSys--27 in index context does not match the one S3 Sys (UHT) HeatSys--11 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111]: data object S3 Sys (UHT) - Loading zn in index context does not match the one S3 Sys (UHT) - L3 Stairs zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].fan_system: data object S3 Sys (UHT) FanSys--15 in index context does not match the one S3 Sys (UHT) FanSys--12 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--15 in index context does not match the one S3 Sys (UHT) SupplyFan--12 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].heating_system: data object S3 Sys (UHT) HeatSys--15 in index context does not match the one S3 Sys (UHT) HeatSys--12 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112]: data object S3 Sys (UHT) - Outdoor Mech Rm zn in index context does not match the one S3 Sys (UHT) - L3-2 Stair B zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].fan_system: data object S3 Sys (UHT) FanSys--28 in index context does not match the one S3 Sys (UHT) FanSys--17 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--28 in index context does not match the one S3 Sys (UHT) SupplyFan--17 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].heating_system: data object S3 Sys (UHT) HeatSys--28 in index context does not match the one S3 Sys (UHT) HeatSys--17 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113]: data object S3 Sys (UHT) - Pool equip. rm zn in index context does not match the one S3 Sys (UHT) - L4 Stair A zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].fan_system: data object S3 Sys (UHT) FanSys--29 in index context does not match the one S3 Sys (UHT) FanSys--13 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--29 in index context does not match the one S3 Sys (UHT) SupplyFan--13 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].heating_system: data object S3 Sys (UHT) HeatSys--29 in index context does not match the one S3 Sys (UHT) HeatSys--13 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114]: data object S3 Sys (UHT) - Trash compactor rm zn in index context does not match the one S3 Sys (UHT) - L4 Stairs zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].fan_system: data object S3 Sys (UHT) FanSys--9 in index context does not match the one S3 Sys (UHT) FanSys--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--9 in index context does not match the one S3 Sys (UHT) SupplyFan--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].heating_system: data object S3 Sys (UHT) HeatSys--9 in index context does not match the one S3 Sys (UHT) HeatSys--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115]: data object S3 Sys (UHT) - Water Rm zn in index context does not match the one S3 Sys (UHT) - L4-2 Stair B zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].fan_system: data object S3 Sys (UHT) FanSys--7 in index context does not match the one S3 Sys (UHT) FanSys--18 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].fan_system.supply_fans[0]: data object S3 Sys (UHT) SupplyFan--7 in index context does not match the one S3 Sys (UHT) SupplyFan--18 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].heating_system: data object S3 Sys (UHT) HeatSys--7 in index context does not match the one S3 Sys (UHT) HeatSys--18 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116]: data object Unit 240 PSZ in index context does not match the one S3 Sys (UHT) - L5 Stair A zn in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].fan_system: data object Unit 240 PSZ FanSys in index context does not match the one S3 Sys (UHT) FanSys--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].fan_system.supply_fans[0]: data object Unit 240 PSZ SupplyFan in index context does not match the one S3 Sys (UHT) SupplyFan--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].heating_system: data object Unit 240 PSZ HeatSys in index context does not match the one S3 Sys (UHT) HeatSys--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].area_type_vertical_fenestration: index context data: OTHER does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].lighting_building_area_type: index context data: MULTIFAMILY does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].schedules[1]: data object ASHRAE AppC MF 2884 EFLH Lgt Ann in index context does not match the one 2/24 Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[2]: data object ASHRAE AppC MF 5840 EFLH Misc Yr in index context does not match the one ASHRAE AppC MF 2884 EFLH Lgt Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[3]: data object ASHRAE AppC MF 6041 EFLH Occ Ann in index context does not match the one ASHRAE AppC MF 5840 EFLH Misc Yr in compare context; path: $.ruleset_model_descriptions[0].schedules[4]: data object Always On Ann in index context does not match the one ASHRAE AppC MF 6041 EFLH Occ Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[5]: data object App G BL HW Lp Heat Reset Sch in index context does not match the one Always On Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[6]: data object BBldg InsLt Sch in index context does not match the one App G BL HW Lp Heat Reset Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[7]: data object BBldg Misc Sch in index context does not match the one BBldg InsLt Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[8]: data object BBldg Occup Sch in index context does not match the one BBldg Misc Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[9]: data object Boiler Reset Ann in index context does not match the one BBldg Occup Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[10]: data object COMCHECK MF Lgt 2884 EFLH Ann in index context does not match the one Boiler Reset Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[11]: data object COMCHECK MF Misc 5840 EFLHs Ann in index context does not match the one COMCHECK MF Lgt 2884 EFLH Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[12]: data object COMCHECK MF Occ 6041 EFLHs Ann in index context does not match the one COMCHECK MF Misc 5840 EFLHs Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[13]: data object Cust 1 Elec Season Sched in index context does not match the one COMCHECK MF Occ 6041 EFLHs Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[14]: data object Custom Gas Season Sched in index context does not match the one Cust 1 Elec Season Sched in compare context; path: $.ruleset_model_descriptions[0].schedules[15]: data object DHW Eqp NRes Sch in index context does not match the one Custom Gas Season Sched in compare context; path: $.ruleset_model_descriptions[0].schedules[16]: data object DHW Eqp Res Sch in index context does not match the one DHW Eqp NRes Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[17]: data object Dirt Depre Windows in index context does not match the one DHW Eqp Res Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[18]: data object EPA APT Ltg Yr 854 EFLHs Ann in index context does not match the one Dirt Depre Windows in compare context; path: $.ruleset_model_descriptions[0].schedules[19]: data object EPA Cool Schedule Ann in index context does not match the one EPA APT Ltg Yr 854 EFLHs Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[20]: data object EPA EQP Com. Area 3285 EFLH Ann in index context does not match the one EPA Cool Schedule Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[21]: data object EPA EQUIP 2117 EFLHs Apt Ann in index context does not match the one EPA EQP Com. Area 3285 EFLH Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[22]: data object EPA Heat Schedule Ann in index context does not match the one EPA EQUIP 2117 EFLHs Apt Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[23]: data object EPA Lgt Com. Area 3285 EFLH Ann in index context does not match the one EPA Heat Schedule Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[24]: data object EPA MF DHW Ann 2628 EFLHs in index context does not match the one EPA Lgt Com. Area 3285 EFLH Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[25]: data object HW Lp Heat Reset Sch in index context does not match the one EPA MF DHW Ann 2628 EFLHs in compare context; path: $.ruleset_model_descriptions[0].schedules[26]: data object Hourly Report Schedule in index context does not match the one HW Lp Heat Reset Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[27]: data object L1-2Bldg InsLt Sch in index context does not match the one Hourly Report Schedule in compare context; path: $.ruleset_model_descriptions[0].schedules[28]: data object L1-2Bldg Misc Sch in index context does not match the one L1-2Bldg InsLt Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[29]: data object L1-2Bldg Occup Sch in index context does not match the one L1-2Bldg Misc Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[30]: data object L1Bldg InsLt Sch in index context does not match the one L1-2Bldg Occup Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[31]: data object L1Bldg Misc Sch in index context does not match the one L1Bldg InsLt Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[32]: data object L1Bldg Occup Sch in index context does not match the one L1Bldg Misc Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[33]: data object Resi Ext Lgt 4380 EFLH Ann in index context does not match the one L1Bldg Occup Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[34]: data object S1 Sys1 (PSZ) Cool Sch in index context does not match the one Resi Ext Lgt 4380 EFLH Ann in compare context; path: $.ruleset_model_descriptions[0].schedules[35]: data object S1 Sys1 (PSZ) Fan Sch in index context does not match the one S1 Sys1 (PSZ) Cool Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[36]: data object S1 Sys1 (PSZ) Heat Sch in index context does not match the one S1 Sys1 (PSZ) Fan Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[37]: data object S2 Sys2 (PSZ) Fan Sch in index context does not match the one S1 Sys1 (PSZ) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[38]: data object S2 Sys2 (PSZ) MinOA Sch in index context does not match the one S2 Sys2 (PSZ) Fan Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[39]: data object S3 Sys3 (UHT) Heat Sch in index context does not match the one S2 Sys2 (PSZ) MinOA Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[40]: data object ZG0-S1 (PSZ) C-Inf Sch in index context does not match the one S3 Sys3 (UHT) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[41]: data object ZG0-S1 (PSZ) P-Inf Sch in index context does not match the one ZG0-S1 (PSZ) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[42]: data object ZG1-S1 (PSZ) C-Inf Sch in index context does not match the one ZG0-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[43]: data object ZG1-S1 (PSZ) P-Inf Sch in index context does not match the one ZG1-S1 (PSZ) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[44]: data object ZG14-S1 (PSZ) P-Inf Sch in index context does not match the one ZG1-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[45]: data object ZG15-S1 (PSZ) P-Inf Sch in index context does not match the one ZG14-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[46]: data object ZG6-S1 (PSZ) P-Inf Sch in index context does not match the one ZG15-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[47]: data object ZG7-S1 (PSZ) P-Inf Sch in index context does not match the one ZG6-S1 (PSZ) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].constructions[15]: data object L1-2GFlSP Construction in index context does not match the one HP AGW cons in compare context; path: $.ruleset_model_descriptions[0].constructions[16]: data object L1-2GFlr Construction in index context does not match the one HP Roof cons in compare context; path: $.ruleset_model_descriptions[0].constructions[17]: data object L1UFCons (G.E1.U2) in index context does not match the one L1-2GFlSP Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[18]: data object L1UFCons (G.E17.U18) in index context does not match the one L1-2GFlr Construction in compare context; path: $.ruleset_model_descriptions[0].constructions[19]: data object L1UFCons (G.ENE13.U14) in index context does not match the one L1UFCons (G.E1.U2) in compare context; path: $.ruleset_model_descriptions[0].constructions[20]: data object L1UFCons (G.N2.U3) in index context does not match the one L1UFCons (G.E17.U18) in compare context; path: $.ruleset_model_descriptions[0].constructions[21]: data object L1UFCons (G.S19.U20) in index context does not match the one L1UFCons (G.ENE13.U14) in compare context; path: $.ruleset_model_descriptions[0].constructions[22]: data object L1UFCons (G.SSW16.U17) in index context does not match the one L1UFCons (G.N2.U3) in compare context; path: $.ruleset_model_descriptions[0].constructions[23]: data object L1UFCons (G.SSW18.U19) in index context does not match the one L1UFCons (G.S19.U20) in compare context; path: $.ruleset_model_descriptions[0].constructions[24]: data object L1UFCons (G.SSW8.U9) in index context does not match the one L1UFCons (G.SSW16.U17) in compare context; path: $.ruleset_model_descriptions[0].constructions[25]: data object L1UFCons (G.SW11.U12) in index context does not match the one L1UFCons (G.SSW18.U19) in compare context; path: $.ruleset_model_descriptions[0].constructions[26]: data object L1UFCons (G.SW9.U10) in index context does not match the one L1UFCons (G.SSW8.U9) in compare context; path: $.ruleset_model_descriptions[0].constructions[27]: data object L1UFCons (G.W3.U4) in index context does not match the one L1UFCons (G.SW11.U12) in compare context; path: $.ruleset_model_descriptions[0].constructions[28]: data object L1UFCons (G.W5.U6) in index context does not match the one L1UFCons (G.SW9.U10) in compare context; path: $.ruleset_model_descriptions[0].constructions[29]: data object L1UFCons (G.W6.U7) in index context does not match the one L1UFCons (G.W3.U4) in compare context; path: $.ruleset_model_descriptions[0].constructions[30]: data object L1UFCons (G.WSW10.U11) in index context does not match the one L1UFCons (G.W5.U6) in compare context; path: $.ruleset_model_descriptions[0].constructions[31]: data object L1UFCons (G.WSW14.U15) in index context does not match the one L1UFCons (G.W6.U7) in compare context; path: $.ruleset_model_descriptions[0].constructions[32]: data object L1UFCons (G.WSW15.U16) in index context does not match the one L1UFCons (G.WSW10.U11) in compare context; path: $.ruleset_model_descriptions[0].constructions[33]: data object L1UFCons (G.WSW20.U21) in index context does not match the one L1UFCons (G.WSW14.U15) in compare context; path: $.ruleset_model_descriptions[0].constructions[34]: data object L1UFCons (G.WSW4.U5) in index context does not match the one L1UFCons (G.WSW15.U16) in compare context; path: $.ruleset_model_descriptions[0].constructions[35]: data object MECHUFCons (G.W1.U2) in index context does not match the one L1UFCons (G.WSW20.U21) in compare context; path: $.ruleset_model_descriptions[0].constructions[36]: data object POOLUFCons (G.W1.U2) in index context does not match the one L1UFCons (G.WSW4.U5) in compare context; path: $.ruleset_model_descriptions[0].constructions[37]: data object PR AGW cons in index context does not match the one MECHUFCons (G.W1.U2) in compare context; path: $.ruleset_model_descriptions[0].constructions[38]: data object PR Roof in index context does not match the one POOLUFCons (G.W1.U2) in compare context; path: $.ruleset_model_descriptions[0].constructions[39]: data object PR SOG in index context does not match the one PR AGW cons in compare context; path: $.ruleset_model_descriptions[0].constructions[40]: data object Sgl Lyr Unins Mtl Door in index context does not match the one PR Roof in compare context; path: $.ruleset_model_descriptions[0].materials[31]: data object Light Soil, Damp 12in_0.19 in index context does not match the one MECHUFMat (G.W1.U2.M1) in compare context; path: $.ruleset_model_descriptions[0].materials[32]: data object MECHUFMat (G.W1.U2.M1) in index context does not match the one MinWool Batt R7 (IN01) in compare context; path: $.ruleset_model_descriptions[0].materials[33]: data object MinWool Batt R7 (IN01) in index context does not match the one MinWool Batt R7 (IN01)_0.15 in compare context; path: $.ruleset_model_descriptions[0].materials[34]: data object MinWool Batt R7 (IN01)_0.15 in index context does not match the one MinWool Batt R7 (IN01)_0.152 in compare context; path: $.ruleset_model_descriptions[0].materials[35]: data object MinWool Batt R7 (IN01)_0.152 in index context does not match the one MinWool Batt R7 (IN01)_0.25 in compare context; path: $.ruleset_model_descriptions[0].materials[36]: data object MinWool Batt R7 (IN01)_0.25 in index context does not match the one MinWool Batt R7 (IN01)_0.41 in compare context; path: $.ruleset_model_descriptions[0].materials[41]: data object Polyisocyanurate 1in_0.14 in index context does not match the one Polyisocyanurate 1in_0.176 in compare context; path: $.ruleset_model_descriptions[0].materials[42]: data object Polyisocyanurate 1in_0.176 in index context does not match the one Polyisocyanurate 1in_0.185 in compare context; path: $.ruleset_model_descriptions[0].materials[43]: data object Polyisocyanurate 1in_0.185 in index context does not match the one Polyisocyanurate 1in_0.22 in compare context; path: $.ruleset_model_descriptions[0].materials[44]: data object Polyisocyanurate 1in_0.33 in index context does not match the one Polyisocyanurate 1in_0.31 in compare context; path: $.ruleset_model_descriptions[0].materials[45]: data object Polyisocyanurate 1in_0.36 in index context does not match the one Polyisocyanurate 1in_0.33 in compare context; path: $.ruleset_model_descriptions[0].materials[46]: data object Polystyrene 1/2in (IN31) in index context does not match the one Polyisocyanurate 1in_0.63 in compare context; path: $.ruleset_model_descriptions[0].materials[47]: data object Polystyrene 1/2in (IN31)_0.15 in index context does not match the one Polyisocyanurate 1in_0.77 in compare context; path: $.ruleset_model_descriptions[0].materials[48]: data object Stucco 1in (SC01) in index context does not match the one Polystyrene 1/2in (IN31) in compare context; path: $.ruleset_model_descriptions[0].materials[49]: data object Stucco 1in (SC01)_0.033 in index context does not match the one Polystyrene 1/2in (IN31)_0.15 in compare context" + } + }, + "1-8": { + "Sample 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 4-PR - 16 - Proposed in index context does not match the one Sample 4-PR - 16 in compare context']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object Sample 4-PR - 16 - Proposed in index context does not match the one Sample 4-PR - 16 in compare context" + ] + } + }, + "1-9": { + "Sample 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object Sample 4-BL in index context does not match the one Sample 4-BL - 1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.minimum_outdoor_airflow: index context data: 38.111844153322295 liter / second does not equal to compare context data: 38.11184522109907 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.minimum_outdoor_airflow: index context data: 77.17477882715468 liter / second does not equal to compare context data: 77.17477631055708 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.minimum_outdoor_airflow: index context data: 159.2435537170463 liter / second does not equal to compare context data: 159.24356702496155 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.minimum_outdoor_airflow: index context data: 216.75764373676384 liter / second does not equal to compare context data: 216.75764120031718 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.minimum_outdoor_airflow: index context data: 280.4453573698236 liter / second does not equal to compare context data: 280.4453425955997 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.minimum_outdoor_airflow: index context data: 49.314244656046185 liter / second does not equal to compare context data: 49.3142445548303 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.minimum_outdoor_airflow: index context data: 236.707130060996 liter / second does not equal to compare context data: 236.70711348198174 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.minimum_outdoor_airflow: index context data: 37.27255311161246 liter / second does not equal to compare context data: 37.272553797133014 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.minimum_outdoor_airflow: index context data: 112.06984433705185 liter / second does not equal to compare context data: 112.06984227944585 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.minimum_outdoor_airflow: index context data: 57.69540153236369 liter / second does not equal to compare context data: 57.695400733928054 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.minimum_outdoor_airflow: index context data: 50.27038027006508 liter / second does not equal to compare context data: 50.27037742038985 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.minimum_outdoor_airflow: index context data: 74.28583752341989 liter / second does not equal to compare context data: 74.28583834721034 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.minimum_outdoor_airflow: index context data: 245.3817891843863 liter / second does not equal to compare context data: 245.38180002525166 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.minimum_outdoor_airflow: index context data: 282.26236615829316 liter / second does not equal to compare context data: 282.26236073780126 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].fan_system.minimum_outdoor_airflow: index context data: 157.93307881248887 liter / second does not equal to compare context data: 157.93307187442403 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].fan_system.minimum_outdoor_airflow: index context data: 211.5227142548698 liter / second does not equal to compare context data: 211.52270804283316 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].fan_system.minimum_outdoor_airflow: index context data: 123.82213937185172 liter / second does not equal to compare context data: 123.82213965425316 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].fan_system.minimum_outdoor_airflow: index context data: 200.38813505692738 liter / second does not equal to compare context data: 200.38813823739628 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].fan_system.minimum_outdoor_airflow: index context data: 114.10087674992333 liter / second does not equal to compare context data: 114.10088016052158 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].fan_system.minimum_outdoor_airflow: index context data: 41.29384990311799 liter / second does not equal to compare context data: 41.29384907407627 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].fan_system.minimum_outdoor_airflow: index context data: 137.29633827245902 liter / second does not equal to compare context data: 137.2963406767103 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].fan_system.minimum_outdoor_airflow: index context data: 56.69653621732245 liter / second does not equal to compare context data: 56.696537646101504 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].fan_system.minimum_outdoor_airflow: index context data: 69.2979165389142 liter / second does not equal to compare context data: 69.2979198599361 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].fan_system.minimum_outdoor_airflow: index context data: 112.29905504093462 liter / second does not equal to compare context data: 112.2990479475387 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].fan_system.minimum_outdoor_airflow: index context data: 74.44077780124006 liter / second does not equal to compare context data: 74.4407799652694 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].fan_system.minimum_outdoor_airflow: index context data: 59.3979358200918 liter / second does not equal to compare context data: 59.397939701360265 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].fan_system.minimum_outdoor_airflow: index context data: 115.10320642199045 liter / second does not equal to compare context data: 115.10319988948193 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].fan_system.minimum_outdoor_airflow: index context data: 71.729449426015 liter / second does not equal to compare context data: 71.72945373789028 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].fan_system.minimum_outdoor_airflow: index context data: 157.93307650902338 liter / second does not equal to compare context data: 157.93307359228254 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].fan_system.minimum_outdoor_airflow: index context data: 245.2092167280875 liter / second does not equal to compare context data: 245.209219628217 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].fan_system.minimum_outdoor_airflow: index context data: 281.71304040986166 liter / second does not equal to compare context data: 281.71303802769705 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].fan_system.minimum_outdoor_airflow: index context data: 49.57735409757406 liter / second does not equal to compare context data: 49.57735232389328 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].fan_system.minimum_outdoor_airflow: index context data: 157.9330762761538 liter / second does not equal to compare context data: 157.9330768833066 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].fan_system.minimum_outdoor_airflow: index context data: 245.20921320601897 liter / second does not equal to compare context data: 245.20922131731686 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].fan_system.minimum_outdoor_airflow: index context data: 281.7130432189421 liter / second does not equal to compare context data: 281.713052693591 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].fan_system.minimum_outdoor_airflow: index context data: 49.5773521177568 liter / second does not equal to compare context data: 49.57735373280869 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].fan_system.minimum_outdoor_airflow: index context data: 157.9330749182747 liter / second does not equal to compare context data: 157.93307831945387 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].fan_system.minimum_outdoor_airflow: index context data: 245.2092265052929 liter / second does not equal to compare context data: 245.20922576546567 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].fan_system.minimum_outdoor_airflow: index context data: 49.57735178269784 liter / second does not equal to compare context data: 49.57735297888888 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].fan_system.minimum_outdoor_airflow: index context data: 123.91011079288737 liter / second does not equal to compare context data: 123.91011213125178 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].fan_system.minimum_outdoor_airflow: index context data: 213.94489843868897 liter / second does not equal to compare context data: 213.9448941741543 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].fan_system.minimum_outdoor_airflow: index context data: 276.14220236338207 liter / second does not equal to compare context data: 276.1422102349547 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].fan_system.minimum_outdoor_airflow: index context data: 114.48842826035849 liter / second does not equal to compare context data: 114.4884214057676 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].fan_system.minimum_outdoor_airflow: index context data: 51.232328610893816 liter / second does not equal to compare context data: 51.23233182421068 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].fan_system.minimum_outdoor_airflow: index context data: 129.87978036407642 liter / second does not equal to compare context data: 129.8797887261112 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].fan_system.minimum_outdoor_airflow: index context data: 56.32972552185543 liter / second does not equal to compare context data: 56.32972603489873 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].fan_system.minimum_outdoor_airflow: index context data: 69.41369073553885 liter / second does not equal to compare context data: 69.4136927092112 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].fan_system.minimum_outdoor_airflow: index context data: 112.08393163606581 liter / second does not equal to compare context data: 112.08392736927766 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].fan_system.minimum_outdoor_airflow: index context data: 74.13844272033168 liter / second does not equal to compare context data: 74.13844614890539 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].fan_system.minimum_outdoor_airflow: index context data: 123.91010879751725 liter / second does not equal to compare context data: 123.91010998672468 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].fan_system.minimum_outdoor_airflow: index context data: 213.9448961436382 liter / second does not equal to compare context data: 213.94490019080033 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].fan_system.minimum_outdoor_airflow: index context data: 276.1421876740812 liter / second does not equal to compare context data: 276.1421876183083 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system.minimum_outdoor_airflow: index context data: 114.48842363408284 liter / second does not equal to compare context data: 114.48842604700634 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].fan_system.minimum_outdoor_airflow: index context data: 51.232330208947616 liter / second does not equal to compare context data: 51.232331492655554 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].fan_system.minimum_outdoor_airflow: index context data: 129.87978002395423 liter / second does not equal to compare context data: 129.8797807602308 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system.minimum_outdoor_airflow: index context data: 56.32972772441493 liter / second does not equal to compare context data: 56.32972925426178 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system.minimum_outdoor_airflow: index context data: 69.41368962776994 liter / second does not equal to compare context data: 69.41369444611824 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].fan_system.minimum_outdoor_airflow: index context data: 74.13844855719745 liter / second does not equal to compare context data: 74.13844734546943 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system.minimum_outdoor_airflow: index context data: 112.08393706525744 liter / second does not equal to compare context data: 112.08393284325382 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].fan_system.minimum_outdoor_airflow: index context data: 123.91010958152205 liter / second does not equal to compare context data: 123.9101127885631 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].fan_system.minimum_outdoor_airflow: index context data: 213.9449050210015 liter / second does not equal to compare context data: 213.9448953259995 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].fan_system.minimum_outdoor_airflow: index context data: 276.14219694528526 liter / second does not equal to compare context data: 276.14220145015133 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].fan_system.minimum_outdoor_airflow: index context data: 114.48842099336329 liter / second does not equal to compare context data: 114.488430373294 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].fan_system.minimum_outdoor_airflow: index context data: 51.23232876241481 liter / second does not equal to compare context data: 51.232330575345365 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].fan_system.minimum_outdoor_airflow: index context data: 129.8797850447772 liter / second does not equal to compare context data: 129.87978453183607 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].fan_system.minimum_outdoor_airflow: index context data: 56.32972783075544 liter / second does not equal to compare context data: 56.32972897135943 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].fan_system.minimum_outdoor_airflow: index context data: 69.41369049198994 liter / second does not equal to compare context data: 69.41369347492291 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].fan_system.minimum_outdoor_airflow: index context data: 74.13844690329476 liter / second does not equal to compare context data: 74.1384430109671 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].fan_system.minimum_outdoor_airflow: index context data: 112.08392818509726 liter / second does not equal to compare context data: 112.08393149659662 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].fan_system.minimum_outdoor_airflow: index context data: 59.39793786294976 liter / second does not equal to compare context data: 59.39793998853735 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].fan_system.minimum_outdoor_airflow: index context data: 64.3034758563588 liter / second does not equal to compare context data: 64.30347404074789 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].fan_system.minimum_outdoor_airflow: index context data: 71.72944950111244 liter / second does not equal to compare context data: 71.72945385410874 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].fan_system.minimum_outdoor_airflow: index context data: 59.39793567410513 liter / second does not equal to compare context data: 59.39793807209173 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].fan_system.minimum_outdoor_airflow: index context data: 64.30347249334281 liter / second does not equal to compare context data: 64.30347000166736 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].fan_system.minimum_outdoor_airflow: index context data: 71.72944883676469 liter / second does not equal to compare context data: 71.72945260808365 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].fan_system.minimum_outdoor_airflow: index context data: 281.71304722625763 liter / second does not equal to compare context data: 281.71304670349906 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].fan_system.minimum_outdoor_airflow: index context data: 447.865575006959 liter / second does not equal to compare context data: 447.86557434796504 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].fan_system.minimum_outdoor_airflow: index context data: 894.1890771929615 liter / second does not equal to compare context data: 894.1890562793427 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].fan_system.minimum_outdoor_airflow: index context data: 21.76254059037308 liter / second does not equal to compare context data: 21.762540580772626 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].fan_system.minimum_outdoor_airflow: index context data: 497.39687786836834 liter / second does not equal to compare context data: 497.39688840629947 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].fan_system.minimum_outdoor_airflow: index context data: 1.796255257152391 liter / second does not equal to compare context data: 1.8023532120394499 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].fan_system.minimum_outdoor_airflow: index context data: 3.1922968092439525 liter / second does not equal to compare context data: 3.203134067396077 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].fan_system.minimum_outdoor_airflow: index context data: 1.1833711600102104 liter / second does not equal to compare context data: 1.1873884865675886 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].fan_system.minimum_outdoor_airflow: index context data: 11.781453718715657 liter / second does not equal to compare context data: 11.821449578432494 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].fan_system.minimum_outdoor_airflow: index context data: 21.39483312526365 liter / second does not equal to compare context data: 21.467464632781592 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].fan_system.minimum_outdoor_airflow: index context data: 3.2619676476477797 liter / second does not equal to compare context data: 3.2812276106415124 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].fan_system.minimum_outdoor_airflow: index context data: 6.346356367856283 liter / second does not equal to compare context data: 6.37074868147987 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].fan_system.minimum_outdoor_airflow: index context data: 6.485716376057731 liter / second does not equal to compare context data: 6.5092758437640175 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].fan_system.minimum_outdoor_airflow: index context data: 0.5966241084136011 liter / second does not equal to compare context data: 0.5986495370842487 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].fan_system.minimum_outdoor_airflow: index context data: 0.23436126839015242 liter / second does not equal to compare context data: 0.23515688161729623 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].fan_system.minimum_outdoor_airflow: index context data: 4.786614450778371 liter / second does not equal to compare context data: 4.802884900888309 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].fan_system.minimum_outdoor_airflow: index context data: 2.18568840531139 liter / second does not equal to compare context data: 2.253446488193556 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].fan_system.minimum_outdoor_airflow: index context data: 9.366761055379996 liter / second does not equal to compare context data: 9.40074287089164 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].fan_system.minimum_outdoor_airflow: index context data: 5.652245949682851 liter / second does not equal to compare context data: 5.674304708337279 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].fan_system.minimum_outdoor_airflow: index context data: 5.664585693467893 liter / second does not equal to compare context data: 5.6857632557722635 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].fan_system.minimum_outdoor_airflow: index context data: 1.869596617693103 liter / second does not equal to compare context data: 1.8759435529553907 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].fan_system.minimum_outdoor_airflow: index context data: 9.67958153788179 liter / second does not equal to compare context data: 9.714255404917608 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].fan_system.minimum_outdoor_airflow: index context data: 1.7721888528636236 liter / second does not equal to compare context data: 1.7782051067524183 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].fan_system.minimum_outdoor_airflow: index context data: 3.7622962230900505 liter / second does not equal to compare context data: 3.7775697164354645 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].fan_system.minimum_outdoor_airflow: index context data: 20.48184824148811 liter / second does not equal to compare context data: 20.235755257949002 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].fan_system.minimum_outdoor_airflow: index context data: 16.364982465472174 liter / second does not equal to compare context data: 16.100793310767312 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].fan_system.minimum_outdoor_airflow: index context data: 18.37118921256258 liter / second does not equal to compare context data: 18.435915841393207 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].fan_system.minimum_outdoor_airflow: index context data: 5.4103835767934925 liter / second does not equal to compare context data: 5.428778420349903 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].fan_system.minimum_outdoor_airflow: index context data: 49.771150039352904 liter / second does not equal to compare context data: 49.77114896135801 liter / second', 'path: $.ruleset_model_descriptions[0].fluid_loops[0].pump_power_per_flow_rate: index context data: 303.1615417109171 second * watt / liter does not equal to compare context data: 303.1615300577049 second * watt / liter', 'path: $.ruleset_model_descriptions[0].boilers[0].operation_upper_limit: index context data: 577853.8048611111 watt does not equal to compare context data: 575559.8273727779 watt', 'path: $.ruleset_model_descriptions[0].boilers[1].operation_lower_limit: index context data: 577853.8048611111 watt does not equal to compare context data: 575559.8273727779 watt', 'path: $.ruleset_model_descriptions[0].boilers[1].operation_upper_limit: index context data: 1155707.6097222222 watt does not equal to compare context data: 1151119.6547455557 watt']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object Sample 4-BL in index context does not match the one Sample 4-BL - 1 in compare context", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.minimum_outdoor_airflow: index context data: 38.111844153322295 liter / second does not equal to compare context data: 38.11184522109907 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.minimum_outdoor_airflow: index context data: 77.17477882715468 liter / second does not equal to compare context data: 77.17477631055708 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.minimum_outdoor_airflow: index context data: 159.2435537170463 liter / second does not equal to compare context data: 159.24356702496155 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.minimum_outdoor_airflow: index context data: 216.75764373676384 liter / second does not equal to compare context data: 216.75764120031718 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.minimum_outdoor_airflow: index context data: 280.4453573698236 liter / second does not equal to compare context data: 280.4453425955997 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.minimum_outdoor_airflow: index context data: 49.314244656046185 liter / second does not equal to compare context data: 49.3142445548303 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.minimum_outdoor_airflow: index context data: 236.707130060996 liter / second does not equal to compare context data: 236.70711348198174 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.minimum_outdoor_airflow: index context data: 37.27255311161246 liter / second does not equal to compare context data: 37.272553797133014 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.minimum_outdoor_airflow: index context data: 112.06984433705185 liter / second does not equal to compare context data: 112.06984227944585 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.minimum_outdoor_airflow: index context data: 57.69540153236369 liter / second does not equal to compare context data: 57.695400733928054 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.minimum_outdoor_airflow: index context data: 50.27038027006508 liter / second does not equal to compare context data: 50.27037742038985 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.minimum_outdoor_airflow: index context data: 74.28583752341989 liter / second does not equal to compare context data: 74.28583834721034 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.minimum_outdoor_airflow: index context data: 245.3817891843863 liter / second does not equal to compare context data: 245.38180002525166 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.minimum_outdoor_airflow: index context data: 282.26236615829316 liter / second does not equal to compare context data: 282.26236073780126 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[20].fan_system.minimum_outdoor_airflow: index context data: 157.93307881248887 liter / second does not equal to compare context data: 157.93307187442403 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[21].fan_system.minimum_outdoor_airflow: index context data: 211.5227142548698 liter / second does not equal to compare context data: 211.52270804283316 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[22].fan_system.minimum_outdoor_airflow: index context data: 123.82213937185172 liter / second does not equal to compare context data: 123.82213965425316 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[23].fan_system.minimum_outdoor_airflow: index context data: 200.38813505692738 liter / second does not equal to compare context data: 200.38813823739628 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[24].fan_system.minimum_outdoor_airflow: index context data: 114.10087674992333 liter / second does not equal to compare context data: 114.10088016052158 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[25].fan_system.minimum_outdoor_airflow: index context data: 41.29384990311799 liter / second does not equal to compare context data: 41.29384907407627 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[26].fan_system.minimum_outdoor_airflow: index context data: 137.29633827245902 liter / second does not equal to compare context data: 137.2963406767103 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[27].fan_system.minimum_outdoor_airflow: index context data: 56.69653621732245 liter / second does not equal to compare context data: 56.696537646101504 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[28].fan_system.minimum_outdoor_airflow: index context data: 69.2979165389142 liter / second does not equal to compare context data: 69.2979198599361 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[29].fan_system.minimum_outdoor_airflow: index context data: 112.29905504093462 liter / second does not equal to compare context data: 112.2990479475387 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[30].fan_system.minimum_outdoor_airflow: index context data: 74.44077780124006 liter / second does not equal to compare context data: 74.4407799652694 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[31].fan_system.minimum_outdoor_airflow: index context data: 59.3979358200918 liter / second does not equal to compare context data: 59.397939701360265 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[32].fan_system.minimum_outdoor_airflow: index context data: 115.10320642199045 liter / second does not equal to compare context data: 115.10319988948193 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[33].fan_system.minimum_outdoor_airflow: index context data: 71.729449426015 liter / second does not equal to compare context data: 71.72945373789028 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[34].fan_system.minimum_outdoor_airflow: index context data: 157.93307650902338 liter / second does not equal to compare context data: 157.93307359228254 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[35].fan_system.minimum_outdoor_airflow: index context data: 245.2092167280875 liter / second does not equal to compare context data: 245.209219628217 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[36].fan_system.minimum_outdoor_airflow: index context data: 281.71304040986166 liter / second does not equal to compare context data: 281.71303802769705 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[37].fan_system.minimum_outdoor_airflow: index context data: 49.57735409757406 liter / second does not equal to compare context data: 49.57735232389328 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[38].fan_system.minimum_outdoor_airflow: index context data: 157.9330762761538 liter / second does not equal to compare context data: 157.9330768833066 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[39].fan_system.minimum_outdoor_airflow: index context data: 245.20921320601897 liter / second does not equal to compare context data: 245.20922131731686 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[40].fan_system.minimum_outdoor_airflow: index context data: 281.7130432189421 liter / second does not equal to compare context data: 281.713052693591 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[41].fan_system.minimum_outdoor_airflow: index context data: 49.5773521177568 liter / second does not equal to compare context data: 49.57735373280869 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[42].fan_system.minimum_outdoor_airflow: index context data: 157.9330749182747 liter / second does not equal to compare context data: 157.93307831945387 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[43].fan_system.minimum_outdoor_airflow: index context data: 245.2092265052929 liter / second does not equal to compare context data: 245.20922576546567 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[44].fan_system.minimum_outdoor_airflow: index context data: 49.57735178269784 liter / second does not equal to compare context data: 49.57735297888888 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[45].fan_system.minimum_outdoor_airflow: index context data: 123.91011079288737 liter / second does not equal to compare context data: 123.91011213125178 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[46].fan_system.minimum_outdoor_airflow: index context data: 213.94489843868897 liter / second does not equal to compare context data: 213.9448941741543 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[47].fan_system.minimum_outdoor_airflow: index context data: 276.14220236338207 liter / second does not equal to compare context data: 276.1422102349547 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[48].fan_system.minimum_outdoor_airflow: index context data: 114.48842826035849 liter / second does not equal to compare context data: 114.4884214057676 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[49].fan_system.minimum_outdoor_airflow: index context data: 51.232328610893816 liter / second does not equal to compare context data: 51.23233182421068 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[50].fan_system.minimum_outdoor_airflow: index context data: 129.87978036407642 liter / second does not equal to compare context data: 129.8797887261112 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[51].fan_system.minimum_outdoor_airflow: index context data: 56.32972552185543 liter / second does not equal to compare context data: 56.32972603489873 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[52].fan_system.minimum_outdoor_airflow: index context data: 69.41369073553885 liter / second does not equal to compare context data: 69.4136927092112 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[53].fan_system.minimum_outdoor_airflow: index context data: 112.08393163606581 liter / second does not equal to compare context data: 112.08392736927766 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[54].fan_system.minimum_outdoor_airflow: index context data: 74.13844272033168 liter / second does not equal to compare context data: 74.13844614890539 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[55].fan_system.minimum_outdoor_airflow: index context data: 123.91010879751725 liter / second does not equal to compare context data: 123.91010998672468 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[56].fan_system.minimum_outdoor_airflow: index context data: 213.9448961436382 liter / second does not equal to compare context data: 213.94490019080033 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[57].fan_system.minimum_outdoor_airflow: index context data: 276.1421876740812 liter / second does not equal to compare context data: 276.1421876183083 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[58].fan_system.minimum_outdoor_airflow: index context data: 114.48842363408284 liter / second does not equal to compare context data: 114.48842604700634 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[59].fan_system.minimum_outdoor_airflow: index context data: 51.232330208947616 liter / second does not equal to compare context data: 51.232331492655554 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[60].fan_system.minimum_outdoor_airflow: index context data: 129.87978002395423 liter / second does not equal to compare context data: 129.8797807602308 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[61].fan_system.minimum_outdoor_airflow: index context data: 56.32972772441493 liter / second does not equal to compare context data: 56.32972925426178 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[62].fan_system.minimum_outdoor_airflow: index context data: 69.41368962776994 liter / second does not equal to compare context data: 69.41369444611824 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[63].fan_system.minimum_outdoor_airflow: index context data: 74.13844855719745 liter / second does not equal to compare context data: 74.13844734546943 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[64].fan_system.minimum_outdoor_airflow: index context data: 112.08393706525744 liter / second does not equal to compare context data: 112.08393284325382 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[65].fan_system.minimum_outdoor_airflow: index context data: 123.91010958152205 liter / second does not equal to compare context data: 123.9101127885631 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[66].fan_system.minimum_outdoor_airflow: index context data: 213.9449050210015 liter / second does not equal to compare context data: 213.9448953259995 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[67].fan_system.minimum_outdoor_airflow: index context data: 276.14219694528526 liter / second does not equal to compare context data: 276.14220145015133 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[68].fan_system.minimum_outdoor_airflow: index context data: 114.48842099336329 liter / second does not equal to compare context data: 114.488430373294 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[69].fan_system.minimum_outdoor_airflow: index context data: 51.23232876241481 liter / second does not equal to compare context data: 51.232330575345365 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[70].fan_system.minimum_outdoor_airflow: index context data: 129.8797850447772 liter / second does not equal to compare context data: 129.87978453183607 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[71].fan_system.minimum_outdoor_airflow: index context data: 56.32972783075544 liter / second does not equal to compare context data: 56.32972897135943 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[72].fan_system.minimum_outdoor_airflow: index context data: 69.41369049198994 liter / second does not equal to compare context data: 69.41369347492291 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[73].fan_system.minimum_outdoor_airflow: index context data: 74.13844690329476 liter / second does not equal to compare context data: 74.1384430109671 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[74].fan_system.minimum_outdoor_airflow: index context data: 112.08392818509726 liter / second does not equal to compare context data: 112.08393149659662 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[75].fan_system.minimum_outdoor_airflow: index context data: 59.39793786294976 liter / second does not equal to compare context data: 59.39793998853735 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[76].fan_system.minimum_outdoor_airflow: index context data: 64.3034758563588 liter / second does not equal to compare context data: 64.30347404074789 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[77].fan_system.minimum_outdoor_airflow: index context data: 71.72944950111244 liter / second does not equal to compare context data: 71.72945385410874 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[78].fan_system.minimum_outdoor_airflow: index context data: 59.39793567410513 liter / second does not equal to compare context data: 59.39793807209173 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[79].fan_system.minimum_outdoor_airflow: index context data: 64.30347249334281 liter / second does not equal to compare context data: 64.30347000166736 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[80].fan_system.minimum_outdoor_airflow: index context data: 71.72944883676469 liter / second does not equal to compare context data: 71.72945260808365 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[81].fan_system.minimum_outdoor_airflow: index context data: 281.71304722625763 liter / second does not equal to compare context data: 281.71304670349906 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[82].fan_system.minimum_outdoor_airflow: index context data: 447.865575006959 liter / second does not equal to compare context data: 447.86557434796504 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[83].fan_system.minimum_outdoor_airflow: index context data: 894.1890771929615 liter / second does not equal to compare context data: 894.1890562793427 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[84].fan_system.minimum_outdoor_airflow: index context data: 21.76254059037308 liter / second does not equal to compare context data: 21.762540580772626 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[85].fan_system.minimum_outdoor_airflow: index context data: 497.39687786836834 liter / second does not equal to compare context data: 497.39688840629947 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[86].fan_system.minimum_outdoor_airflow: index context data: 1.796255257152391 liter / second does not equal to compare context data: 1.8023532120394499 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[87].fan_system.minimum_outdoor_airflow: index context data: 3.1922968092439525 liter / second does not equal to compare context data: 3.203134067396077 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[88].fan_system.minimum_outdoor_airflow: index context data: 1.1833711600102104 liter / second does not equal to compare context data: 1.1873884865675886 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[89].fan_system.minimum_outdoor_airflow: index context data: 11.781453718715657 liter / second does not equal to compare context data: 11.821449578432494 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[90].fan_system.minimum_outdoor_airflow: index context data: 21.39483312526365 liter / second does not equal to compare context data: 21.467464632781592 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[91].fan_system.minimum_outdoor_airflow: index context data: 3.2619676476477797 liter / second does not equal to compare context data: 3.2812276106415124 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[92].fan_system.minimum_outdoor_airflow: index context data: 6.346356367856283 liter / second does not equal to compare context data: 6.37074868147987 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[94].fan_system.minimum_outdoor_airflow: index context data: 6.485716376057731 liter / second does not equal to compare context data: 6.5092758437640175 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[95].fan_system.minimum_outdoor_airflow: index context data: 0.5966241084136011 liter / second does not equal to compare context data: 0.5986495370842487 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[96].fan_system.minimum_outdoor_airflow: index context data: 0.23436126839015242 liter / second does not equal to compare context data: 0.23515688161729623 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[98].fan_system.minimum_outdoor_airflow: index context data: 4.786614450778371 liter / second does not equal to compare context data: 4.802884900888309 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[99].fan_system.minimum_outdoor_airflow: index context data: 2.18568840531139 liter / second does not equal to compare context data: 2.253446488193556 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[100].fan_system.minimum_outdoor_airflow: index context data: 9.366761055379996 liter / second does not equal to compare context data: 9.40074287089164 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[103].fan_system.minimum_outdoor_airflow: index context data: 5.652245949682851 liter / second does not equal to compare context data: 5.674304708337279 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[106].fan_system.minimum_outdoor_airflow: index context data: 5.664585693467893 liter / second does not equal to compare context data: 5.6857632557722635 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[108].fan_system.minimum_outdoor_airflow: index context data: 1.869596617693103 liter / second does not equal to compare context data: 1.8759435529553907 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[109].fan_system.minimum_outdoor_airflow: index context data: 9.67958153788179 liter / second does not equal to compare context data: 9.714255404917608 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[110].fan_system.minimum_outdoor_airflow: index context data: 1.7721888528636236 liter / second does not equal to compare context data: 1.7782051067524183 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[111].fan_system.minimum_outdoor_airflow: index context data: 3.7622962230900505 liter / second does not equal to compare context data: 3.7775697164354645 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[112].fan_system.minimum_outdoor_airflow: index context data: 20.48184824148811 liter / second does not equal to compare context data: 20.235755257949002 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[113].fan_system.minimum_outdoor_airflow: index context data: 16.364982465472174 liter / second does not equal to compare context data: 16.100793310767312 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[114].fan_system.minimum_outdoor_airflow: index context data: 18.37118921256258 liter / second does not equal to compare context data: 18.435915841393207 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[115].fan_system.minimum_outdoor_airflow: index context data: 5.4103835767934925 liter / second does not equal to compare context data: 5.428778420349903 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[116].fan_system.minimum_outdoor_airflow: index context data: 49.771150039352904 liter / second does not equal to compare context data: 49.77114896135801 liter / second", + "path: $.ruleset_model_descriptions[0].fluid_loops[0].pump_power_per_flow_rate: index context data: 303.1615417109171 second * watt / liter does not equal to compare context data: 303.1615300577049 second * watt / liter", + "path: $.ruleset_model_descriptions[0].boilers[0].operation_upper_limit: index context data: 577853.8048611111 watt does not equal to compare context data: 575559.8273727779 watt", + "path: $.ruleset_model_descriptions[0].boilers[1].operation_lower_limit: index context data: 577853.8048611111 watt does not equal to compare context data: 575559.8273727779 watt", + "path: $.ruleset_model_descriptions[0].boilers[1].operation_upper_limit: index context data: 1155707.6097222222 watt does not equal to compare context data: 1151119.6547455557 watt" + ] + } + }, + "4-1": { + "Units B105-B113 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit B-114 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units B101-B104 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 135 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 129-134 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 111-113 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 104 - 115 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 114-120 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 128 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units B105 - 128 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 201 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 202-208 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 210-211 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 213-217 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 218 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 247-248 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 212-216 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 241-246 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 205-209 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 203 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 220-229 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 231-239 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 313-317 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 318 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 310-311 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 350 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 347-348 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 342-346 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 312-316 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 308-349 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 303 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 305-309 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 413-417 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 418 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 410-411 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 450 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 447-448 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 442-446 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 412-416 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 408-449 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 403 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 404-409 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 513-517 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 518 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 510-511 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 550 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 547-548 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 542-546 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 512-516 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 508-549 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 503 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 504-509 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 340 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 320-330 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 319-327 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 331-339 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 440 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 420-430 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 419-427 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 431-439 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 540 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 520-530 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 519-527 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 531-539 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "B-Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Retail zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "IDF zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 219-227 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Main entrance zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Elec/Meter Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Gas Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "B-Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Water Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Main Electrical Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Trash compactor rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "B-Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1-Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Loading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Outdoor Mech Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Pool equip. rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 240 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-2": { + "Units B105-B113 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit B-114 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units B101-B104 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 135 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 129-134 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 111-113 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 104 - 115 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 114-120 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 128 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units B105 - 128 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 201 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 202-208 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 210-211 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 213-217 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 218 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 247-248 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 212-216 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 241-246 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 205-209 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 203 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 220-229 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 231-239 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 313-317 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 318 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 310-311 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 350 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 347-348 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 342-346 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 312-316 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 308-349 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 303 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 305-309 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 413-417 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 418 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 410-411 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 450 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 447-448 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 442-446 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 412-416 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 408-449 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 403 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 404-409 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 513-517 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 518 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 510-511 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 550 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 547-548 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 542-546 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 512-516 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 508-549 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 503 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 504-509 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 340 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 320-330 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 319-327 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 331-339 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 440 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 420-430 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 419-427 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 431-439 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 540 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 520-530 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 519-527 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 531-539 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "B-Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Retail zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "IDF zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Units 219-227 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Main entrance zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Elec/Meter Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Gas Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "B-Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Water Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1 Main Electrical Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Trash compactor rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "B-Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L1-Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Loading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L2 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L3 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L4 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "L5 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Outdoor Mech Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Pool equip. rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "Unit 240 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-11": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No fan operating schedules found for zone 'L1 Elevator 3 zn', and no fallback assumed." + } + }, + "4-14": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-1": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "no_of_rmds", + "value": "6" + }, + { + "variable": "no_of_output_instance", + "value": "5" + }, + { + "variable": "rotation_expected_b", + "value": "True" + }, + { + "variable": "has_baseline_0", + "value": "True" + }, + { + "variable": "has_baseline_90", + "value": "True" + }, + { + "variable": "has_baseline_180", + "value": "True" + }, + { + "variable": "has_baseline_270", + "value": "True" + }, + { + "variable": "has_proposed", + "value": "True" + }, + { + "variable": "has_user", + "value": "True" + }, + { + "variable": "has_baseline_0_output", + "value": "True" + }, + { + "variable": "has_baseline_90_output", + "value": "True" + }, + { + "variable": "has_baseline_180_output", + "value": "True" + }, + { + "variable": "has_baseline_270_output", + "value": "True" + }, + { + "variable": "has_proposed_output", + "value": "True" + }, + { + "variable": "has_user_output", + "value": "True" + } + ], + "messages": "" + } + }, + "5-2": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surfaces_casting_shade_ids", + "value": "['L1West Wall (G.W5.E39)', 'L1ENE Wall (G.ENE13.E49)', 'L1SSE Wall (G.ENE13.E50)', 'L1ENE Wall (G.ENE13.E51)', 'L1SSE Wall (G.ENE13.E52)', 'L1ENE Wall (G.ENE13.E53)', 'L1NNW Wall (G.ENE13.E54)', 'L1ENE Wall (G.ENE13.E55)', 'L1East Wall (G.ENE13.E56)', 'L1South Wall (G.S19.E60)', 'L1West Wall (G.S19.E61)', 'L1South Wall (G.S19.E62)', 'L1East Wall (G.S19.E63)', 'L1South Wall (G.S19.E64)', 'L1West Wall (G.S19.E65)', 'L1South Wall (G.S19.E66)', 'L1West Wall (G.S19.E67)', 'L1South Wall (G.S19.E68)', 'L1East Wall (G.S19.E69)', 'L1South Wall (G.S19.E70)', 'L1West Wall (G.S19.E71)', 'L1South Wall (G.S19.E72)', 'L1East Wall (G.S19.E73)', 'L1South Wall (G.S19.E74)', 'L1West Wall (G.S19.E75)', 'L1South Wall (G.S19.E76)', 'L1WSW Wall (G.WSW20.E77)', 'L1NNW Wall (G.WSW20.E78)', 'L1WSW Wall (G.WSW20.E79)', 'L1NNW Wall (G.WSW20.E80)', 'L1WSW Wall (G.WSW20.E81)', 'L1SSE Wall (G.WSW20.E82)', 'L1WSW Wall (G.WSW20.E83)', 'L1SSE Wall (G.WSW20.E84)', 'L1WSW Wall (G.WSW20.E85)', 'L1-2SE Wall (G.SE1.E1)', 'L1-2SW Wall (G.SE1.E2)', 'L1-2SE Wall (G.SE1.E3)', 'L1-2NE Wall (G.SE1.E4)', 'L1-2SE Wall (G.SE1.E5)', 'L1-2NE Wall (G.SE1.E6)', 'L1-2SE Wall (G.SE1.E7)', 'L1-2SW Wall (G.SE1.E8)', 'L1-2SE Wall (G.SE1.E9)', 'L1-2NW Wall (G.NW3.E17)', 'L1-2NE Wall (G.NW3.E18)', 'L1-2NW Wall (G.NW3.E19)', 'L1-2NE Wall (G.NW3.E20)', 'L1-2NW Wall (G.NW3.E21)', 'L1-2SW Wall (G.NW3.E22)', 'L1-2NW Wall (G.NW3.E23)', 'L1-2SW Wall (G.NW3.E24)', 'L1-2NW Wall (G.NW3.E25)', 'L1-2SSE Wall (G.SSW5.E26)', 'L1-2ENE Wall (G.SSW5.E27)', 'L1-2SSE Wall (G.SSW5.E28)', 'L1-2NNW Wall (G.SSW5.E29)', 'L1-2WSW Wall (G.SSW5.E30)', 'L1-2WSW Wall (G.SSE6.E31)', 'L1-2SSE Wall (G.SSE6.E32)', 'L1-2ENE Wall (G.SSE6.E33)', 'L1-2SSE Wall (G.SSE6.E34)', 'L1-2WSW Wall (G.SSE6.E35)', 'L1-2SSE Wall (G.SSE6.E36)', 'L1-2WSW Wall (G.SSE6.E37)', 'L1-2SSE Wall (G.SSE6.E38)', 'L1-2ENE Wall (G.SSE6.E39)', 'L1-2SSE Wall (G.SSE6.E40)', 'L2North Wall (G.NNE1.E1)', 'L2West Wall (G.NNE1.E2)', 'L2North Wall (G.N2.E3)', 'L2West Wall (G.N2.E4)', 'L2North Wall (G.N2.E5)', 'L2East Wall (G.N2.E6)', 'L2North Wall (G.N2.E7)', 'L2West Wall (G.N2.E8)', 'L2North Wall (G.N2.E9)', 'L2East Wall (G.N2.E10)', 'L2North Wall (G.N2.E11)', 'L2West Wall (G.N2.E12)', 'L2North Wall (G.N2.E13)', 'L2East Wall (G.N2.E14)', 'L2North Wall (G.N2.E15)', 'L2East Wall (G.N2.E16)', 'L2North Wall (G.N2.E17)', 'L2NNW Wall (G.NE3.E18)', 'L2ENE Wall (G.NE3.E19)', 'L2SE Wall (G.NE3.E20)', 'L2NE Wall (G.NE3.E21)', 'L2NW Wall (G.NE3.E22)', 'L2NE Wall (G.NE3.E23)', 'L2North Wall (G.NE3.E24)', 'L2ENE Wall (G.NE3.E25)', 'L2ENE Wall (G.ENE4.E26)', 'L2NNW Wall (G.ENE4.E27)', 'L2ENE Wall (G.ENE4.E28)', 'L2SSE Wall (G.ENE4.E29)', 'L2ENE Wall (G.ENE4.E30)', 'L2SE Wall (G.SE5.E34)', 'L2NE Wall (G.SE5.E35)', 'L2SE Wall (G.SE5.E36)', 'L2ENE Wall (G.SE5.E37)', 'L2West Wall (G.WSW8.E40)', 'L2West Wall (G.WSW8.E41)', 'L2South Wall (G.WSW8.E42)', 'L2West Wall (G.WSW8.E43)', 'L2WSW Wall (G.WSW12.E48)', 'L2NNW Wall (G.WSW12.E49)', 'L2WSW Wall (G.WSW12.E50)', 'L2NNW Wall (G.WSW12.E51)', 'L2WSW Wall (G.WSW12.E52)', 'L2SSE Wall (G.WSW12.E53)', 'L2WSW Wall (G.WSW12.E54)', 'L2SSE Wall (G.WSW12.E55)', 'L2WSW Wall (G.WSW12.E56)', 'L2ENE Wall (G.ENE13.E57)', 'L2SSE Wall (G.ENE13.E58)', 'L2ENE Wall (G.ENE13.E59)', 'L2SSE Wall (G.ENE13.E60)', 'L2ENE Wall (G.ENE13.E61)', 'L2NNW Wall (G.ENE13.E62)', 'L2ENE Wall (G.ENE13.E63)', 'L2West Wall (G.S15.E65)', 'L2South Wall (G.S15.E66)', 'L2East Wall (G.S15.E67)', 'L2South Wall (G.S15.E68)', 'L2West Wall (G.S15.E69)', 'L2South Wall (G.S15.E70)', 'L2East Wall (G.S15.E71)', 'L2South Wall (G.S15.E72)', 'L2East Wall (G.SSE18.E78)', 'L2South Wall (G.SSE18.E79)', 'L2West Wall (G.SSE18.E80)', 'L2South Wall (G.SSE18.E81)', 'L2-2SE Wall (G.SE1.E1)', 'L2-2SW Wall (G.SE1.E2)', 'L2-2SE Wall (G.SE1.E3)', 'L2-2NE Wall (G.SE1.E4)', 'L2-2SE Wall (G.SE1.E5)', 'L2-2NE Wall (G.SE1.E6)', 'L2-2SE Wall (G.SE1.E7)', 'L2-2SW Wall (G.SE1.E8)', 'L2-2SE Wall (G.SE1.E9)', 'L2-2SE Wall (G.SE1.E10)', 'L2-2WSW Wall (G.SSE5.E25)', 'L2-2SSE Wall (G.SSE5.E26)', 'L2-2ENE Wall (G.SSE5.E27)', 'L2-2SSE Wall (G.SSE5.E28)', 'L2-2WSW Wall (G.SSE5.E29)', 'L2-2SSE Wall (G.SSE5.E30)', 'L2-2WSW Wall (G.SSE5.E31)', 'L2-2SSE Wall (G.SSE5.E32)', 'L2-2ENE Wall (G.SSE5.E33)', 'L2-2SSE Wall (G.SSE5.E34)', 'L2-2WSW Wall (G.N6.E42)', 'L2-2NNW Wall (G.N6.E43)', 'L2-2WSW Wall (G.N6.E44)', 'L3NNW Wall (G.ENE1.E1)', 'L3ENE Wall (G.ENE1.E2)', 'L3NNW Wall (G.ENE1.E3)', 'L3ENE Wall (G.ENE1.E4)', 'L3SSE Wall (G.ENE1.E5)', 'L3ENE Wall (G.ENE1.E6)', 'L3SW Wall (G.SE2.E8)', 'L3SE Wall (G.SE2.E9)', 'L3NE Wall (G.SE2.E10)', 'L3SE Wall (G.SE2.E11)', 'L3ENE Wall (G.SE2.E12)', 'L3NE Wall (G.NE3.E13)', 'L3NW Wall (G.NE3.E14)', 'L3NE Wall (G.NE3.E15)', 'L3North Wall (G.NE3.E16)', 'L3West Wall (G.NE3.E17)', 'L3ENE Wall (G.NE3.E18)', 'L3SE Wall (G.NE3.E19)', 'L3West Wall (G.NW5.E20)', 'L3North Wall (G.NW5.E21)', 'L3West Wall (G.WSW7.E27)', 'L3West Wall (G.WSW7.E28)', 'L3West Wall (G.WSW7.E29)', 'L3South Wall (G.WSW7.E30)', 'L3ENE Wall (G.ENE13.E46)', 'L3SSE Wall (G.ENE13.E47)', 'L3ENE Wall (G.ENE13.E48)', 'L3SSE Wall (G.ENE13.E49)', 'L3ENE Wall (G.ENE13.E50)', 'L3NNW Wall (G.ENE13.E51)', 'L3ENE Wall (G.ENE13.E52)', 'L3North Wall (G.ENE13.E53)', 'L3WSW Wall (G.WSW14.E54)', 'L3NNW Wall (G.WSW14.E55)', 'L3WSW Wall (G.WSW14.E56)', 'L3NNW Wall (G.WSW14.E57)', 'L3WSW Wall (G.WSW14.E58)', 'L3SSE Wall (G.WSW14.E59)', 'L3WSW Wall (G.WSW14.E60)', 'L3SSE Wall (G.WSW14.E61)', 'L3WSW Wall (G.WSW14.E62)', 'L3East Wall (G.N15.E64)', 'L3North Wall (G.N15.E65)', 'L3West Wall (G.N15.E66)', 'L3North Wall (G.N15.E67)', 'L3East Wall (G.N15.E68)', 'L3North Wall (G.N15.E69)', 'L3West Wall (G.N15.E70)', 'L3North Wall (G.N15.E71)', 'L3East Wall (G.N15.E72)', 'L3North Wall (G.N15.E73)', 'L3East Wall (G.N15.E74)', 'L3North Wall (G.N15.E75)', 'L3North Wall (G.N15.E76)', 'L3West Wall (G.N15.E77)', 'L3North Wall (G.N15.E78)', 'L3North Wall (G.N15.E79)', 'L3East Wall (G.SSE16.E80)', 'L3South Wall (G.SSE16.E81)', 'L3West Wall (G.SSE16.E82)', 'L3South Wall (G.SSE16.E83)', 'L3West Wall (G.S17.E84)', 'L3South Wall (G.S17.E85)', 'L3East Wall (G.S17.E86)', 'L3South Wall (G.S17.E87)', 'L3West Wall (G.S17.E88)', 'L3South Wall (G.S17.E89)', 'L3East Wall (G.S17.E90)', 'L3South Wall (G.S17.E91)', 'L3NNW Wall (M.ENE18.E92)', 'L3ENE Wall (M.ENE18.E93)', 'L3NNW Wall (M.ENE18.E94)', 'L3ENE Wall (M.ENE18.E95)', 'L3SSE Wall (M.ENE18.E96)', 'L3ENE Wall (M.ENE18.E97)', 'L3SW Wall (M.SE19.E99)', 'L3SE Wall (M.SE19.E100)', 'L3NE Wall (M.SE19.E101)', 'L3SE Wall (M.SE19.E102)', 'L3ENE Wall (M.SE19.E103)', 'L3NE Wall (M.NE20.E104)', 'L3NW Wall (M.NE20.E105)', 'L3NE Wall (M.NE20.E106)', 'L3North Wall (M.NE20.E107)', 'L3West Wall (M.NE20.E108)', 'L3ENE Wall (M.NE20.E109)', 'L3SE Wall (M.NE20.E110)', 'L3West Wall (M.NW22.E111)', 'L3North Wall (M.NW22.E112)', 'L3West Wall (M.WSW24.E118)', 'L3West Wall (M.WSW24.E119)', 'L3West Wall (M.WSW24.E120)', 'L3South Wall (M.WSW24.E121)', 'L3ENE Wall (M.ENE30.E137)', 'L3SSE Wall (M.ENE30.E138)', 'L3ENE Wall (M.ENE30.E139)', 'L3SSE Wall (M.ENE30.E140)', 'L3ENE Wall (M.ENE30.E141)', 'L3NNW Wall (M.ENE30.E142)', 'L3ENE Wall (M.ENE30.E143)', 'L3North Wall (M.ENE30.E144)', 'L3WSW Wall (M.WSW31.E145)', 'L3NNW Wall (M.WSW31.E146)', 'L3WSW Wall (M.WSW31.E147)', 'L3NNW Wall (M.WSW31.E148)', 'L3WSW Wall (M.WSW31.E149)', 'L3SSE Wall (M.WSW31.E150)', 'L3WSW Wall (M.WSW31.E151)', 'L3SSE Wall (M.WSW31.E152)', 'L3WSW Wall (M.WSW31.E153)', 'L3East Wall (M.N32.E155)', 'L3North Wall (M.N32.E156)', 'L3West Wall (M.N32.E157)', 'L3North Wall (M.N32.E158)', 'L3East Wall (M.N32.E159)', 'L3North Wall (M.N32.E160)', 'L3West Wall (M.N32.E161)', 'L3North Wall (M.N32.E162)', 'L3East Wall (M.N32.E163)', 'L3North Wall (M.N32.E164)', 'L3East Wall (M.N32.E165)', 'L3North Wall (M.N32.E166)', 'L3North Wall (M.N32.E167)', 'L3West Wall (M.N32.E168)', 'L3North Wall (M.N32.E169)', 'L3North Wall (M.N32.E170)', 'L3East Wall (M.SSE33.E171)', 'L3South Wall (M.SSE33.E172)', 'L3West Wall (M.SSE33.E173)', 'L3South Wall (M.SSE33.E174)', 'L3West Wall (M.S34.E175)', 'L3South Wall (M.S34.E176)', 'L3East Wall (M.S34.E177)', 'L3South Wall (M.S34.E178)', 'L3West Wall (M.S34.E179)', 'L3South Wall (M.S34.E180)', 'L3East Wall (M.S34.E181)', 'L3South Wall (M.S34.E182)', 'L3NNW Wall (T.ENE35.E183)', 'L3ENE Wall (T.ENE35.E184)', 'L3NNW Wall (T.ENE35.E185)', 'L3ENE Wall (T.ENE35.E186)', 'L3SSE Wall (T.ENE35.E187)', 'L3ENE Wall (T.ENE35.E188)', 'L3Roof (T.ENE35.E189)', 'L3SW Wall (T.SE36.E191)', 'L3SE Wall (T.SE36.E192)', 'L3NE Wall (T.SE36.E193)', 'L3SE Wall (T.SE36.E194)', 'L3ENE Wall (T.SE36.E195)', 'L3Roof (T.SE36.E196)', 'L3NE Wall (T.NE37.E197)', 'L3NW Wall (T.NE37.E198)', 'L3NE Wall (T.NE37.E199)', 'L3North Wall (T.NE37.E200)', 'L3West Wall (T.NE37.E201)', 'L3ENE Wall (T.NE37.E202)', 'L3SE Wall (T.NE37.E203)', 'L3Roof (T.NE37.E204)', 'L3West Wall (T.NW39.E206)', 'L3North Wall (T.NW39.E207)', 'L3Roof (T.NW39.E208)', 'L3West Wall (T.WSW41.E215)', 'L3West Wall (T.WSW41.E216)', 'L3West Wall (T.WSW41.E217)', 'L3South Wall (T.WSW41.E218)', 'L3Roof (T.WSW41.E219)', 'L3ENE Wall (T.ENE47.E240)', 'L3SSE Wall (T.ENE47.E241)', 'L3ENE Wall (T.ENE47.E242)', 'L3SSE Wall (T.ENE47.E243)', 'L3ENE Wall (T.ENE47.E244)', 'L3NNW Wall (T.ENE47.E245)', 'L3ENE Wall (T.ENE47.E246)', 'L3North Wall (T.ENE47.E247)', 'L3Roof (T.ENE47.E248)', 'L3WSW Wall (T.WSW48.E249)', 'L3NNW Wall (T.WSW48.E250)', 'L3WSW Wall (T.WSW48.E251)', 'L3NNW Wall (T.WSW48.E252)', 'L3WSW Wall (T.WSW48.E253)', 'L3SSE Wall (T.WSW48.E254)', 'L3WSW Wall (T.WSW48.E255)', 'L3SSE Wall (T.WSW48.E256)', 'L3WSW Wall (T.WSW48.E257)', 'L3Roof (T.WSW48.E259)', 'L3East Wall (T.N49.E260)', 'L3North Wall (T.N49.E261)', 'L3West Wall (T.N49.E262)', 'L3North Wall (T.N49.E263)', 'L3East Wall (T.N49.E264)', 'L3North Wall (T.N49.E265)', 'L3West Wall (T.N49.E266)', 'L3North Wall (T.N49.E267)', 'L3East Wall (T.N49.E268)', 'L3North Wall (T.N49.E269)', 'L3East Wall (T.N49.E270)', 'L3North Wall (T.N49.E271)', 'L3North Wall (T.N49.E272)', 'L3West Wall (T.N49.E273)', 'L3North Wall (T.N49.E274)', 'L3North Wall (T.N49.E275)', 'L3Roof (T.N49.E276)', 'L3East Wall (T.SSE50.E277)', 'L3South Wall (T.SSE50.E278)', 'L3West Wall (T.SSE50.E279)', 'L3South Wall (T.SSE50.E280)', 'L3Roof (T.SSE50.E281)', 'L3West Wall (T.S51.E282)', 'L3South Wall (T.S51.E283)', 'L3East Wall (T.S51.E284)', 'L3South Wall (T.S51.E285)', 'L3West Wall (T.S51.E286)', 'L3South Wall (T.S51.E287)', 'L3East Wall (T.S51.E288)', 'L3South Wall (T.S51.E289)', 'L3Roof (T.S51.E290)', 'L3-2SSE Wall (G.SSW1.E1)', 'L3-2ENE Wall (G.SSW1.E2)', 'L3-2SSE Wall (G.SSW1.E3)', 'L3-2NNW Wall (G.SSW1.E4)', 'L3-2WSW Wall (G.SSW1.E5)', 'L3-2SW Wall (G.SE2.E6)', 'L3-2SE Wall (G.SE2.E7)', 'L3-2NE Wall (G.SE2.E8)', 'L3-2SE Wall (G.SE2.E9)', 'L3-2NE Wall (G.SE2.E10)', 'L3-2SE Wall (G.SE2.E11)', 'L3-2SW Wall (G.SE2.E12)', 'L3-2SE Wall (G.SE2.E13)', 'L3-2SE Wall (G.SE2.E14)', 'L3-2SE Wall (G.SE2.E15)', 'L3-2NW Wall (G.NNW5.E31)', 'L3-2NE Wall (G.NNW5.E32)', 'L3-2NW Wall (G.NNW5.E33)', 'L3-2NE Wall (G.NNW5.E34)', 'L3-2NW Wall (G.NNW5.E35)', 'L3-2SW Wall (G.NNW5.E36)', 'L3-2NW Wall (G.NNW5.E37)', 'L3-2SW Wall (G.NNW5.E38)', 'L3-2NW Wall (G.NNW5.E39)', 'L3-2WSW Wall (G.SSE6.E42)', 'L3-2SSE Wall (G.SSE6.E43)', 'L3-2ENE Wall (G.SSE6.E44)', 'L3-2SSE Wall (G.SSE6.E45)', 'L3-2WSW Wall (G.SSE6.E46)', 'L3-2SSE Wall (G.SSE6.E47)', 'L3-2WSW Wall (G.SSE6.E48)', 'L3-2SSE Wall (G.SSE6.E49)', 'L3-2ENE Wall (G.SSE6.E50)', 'L3-2SSE Wall (G.SSE6.E51)', 'L3-2SSE Wall (M.SSW7.E52)', 'L3-2ENE Wall (M.SSW7.E53)', 'L3-2SSE Wall (M.SSW7.E54)', 'L3-2NNW Wall (M.SSW7.E55)', 'L3-2WSW Wall (M.SSW7.E56)', 'L3-2SW Wall (M.SE8.E57)', 'L3-2SE Wall (M.SE8.E58)', 'L3-2NE Wall (M.SE8.E59)', 'L3-2SE Wall (M.SE8.E60)', 'L3-2NE Wall (M.SE8.E61)', 'L3-2SE Wall (M.SE8.E62)', 'L3-2SW Wall (M.SE8.E63)', 'L3-2SE Wall (M.SE8.E64)', 'L3-2SE Wall (M.SE8.E65)', 'L3-2SE Wall (M.SE8.E66)', 'L3-2NW Wall (M.NNW11.E82)', 'L3-2NE Wall (M.NNW11.E83)', 'L3-2NW Wall (M.NNW11.E84)', 'L3-2NE Wall (M.NNW11.E85)', 'L3-2NW Wall (M.NNW11.E86)', 'L3-2SW Wall (M.NNW11.E87)', 'L3-2NW Wall (M.NNW11.E88)', 'L3-2SW Wall (M.NNW11.E89)', 'L3-2NW Wall (M.NNW11.E90)', 'L3-2WSW Wall (M.SSE12.E93)', 'L3-2SSE Wall (M.SSE12.E94)', 'L3-2ENE Wall (M.SSE12.E95)', 'L3-2SSE Wall (M.SSE12.E96)', 'L3-2WSW Wall (M.SSE12.E97)', 'L3-2SSE Wall (M.SSE12.E98)', 'L3-2WSW Wall (M.SSE12.E99)', 'L3-2SSE Wall (M.SSE12.E100)', 'L3-2ENE Wall (M.SSE12.E101)', 'L3-2SSE Wall (M.SSE12.E102)', 'L3-2SSE Wall (T.SSW13.E103)', 'L3-2ENE Wall (T.SSW13.E104)', 'L3-2SSE Wall (T.SSW13.E105)', 'L3-2NNW Wall (T.SSW13.E106)', 'L3-2WSW Wall (T.SSW13.E107)', 'L3-2Roof (T.SSW13.E108)', 'L3-2SW Wall (T.SE14.E109)', 'L3-2SE Wall (T.SE14.E110)', 'L3-2NE Wall (T.SE14.E111)', 'L3-2SE Wall (T.SE14.E112)', 'L3-2NE Wall (T.SE14.E113)', 'L3-2SE Wall (T.SE14.E114)', 'L3-2SW Wall (T.SE14.E115)', 'L3-2SE Wall (T.SE14.E116)', 'L3-2SE Wall (T.SE14.E117)', 'L3-2SE Wall (T.SE14.E118)', 'L3-2Roof (T.SE14.E119)', 'L3-2NW Wall (T.NNW17.E137)', 'L3-2NE Wall (T.NNW17.E138)', 'L3-2NW Wall (T.NNW17.E139)', 'L3-2NE Wall (T.NNW17.E140)', 'L3-2NW Wall (T.NNW17.E141)', 'L3-2SW Wall (T.NNW17.E142)', 'L3-2NW Wall (T.NNW17.E143)', 'L3-2SW Wall (T.NNW17.E144)', 'L3-2NW Wall (T.NNW17.E145)', 'L3-2Roof (T.NNW17.E148)', 'L3-2WSW Wall (T.SSE18.E149)', 'L3-2SSE Wall (T.SSE18.E150)', 'L3-2ENE Wall (T.SSE18.E151)', 'L3-2SSE Wall (T.SSE18.E152)', 'L3-2WSW Wall (T.SSE18.E153)', 'L3-2SSE Wall (T.SSE18.E154)', 'L3-2WSW Wall (T.SSE18.E155)', 'L3-2SSE Wall (T.SSE18.E156)', 'L3-2ENE Wall (T.SSE18.E157)', 'L3-2SSE Wall (T.SSE18.E158)', 'L3-2Roof (T.SSE18.E159)', 'L1SE Wall (G.E1.E2)', 'L1NE Wall (G.E1.E3)', 'L1SE Wall (G.E1.E4)', 'L1ENE Wall (G.E1.E5)', 'L1NNW Wall (G.E1.E6)', 'L1ENE Wall (G.E1.E7)', 'L1SSE Wall (G.E1.E8)', 'L1ENE Wall (G.E1.E9)', 'L1NNW Wall (G.E1.E10)', 'L1ENE Wall (G.E1.E11)', 'L1SE Wall (G.N2.E12)', 'L1NE Wall (G.N2.E13)', 'L1NW Wall (G.N2.E14)', 'L1NE Wall (G.N2.E15)', 'L1North Wall (G.N2.E16)', 'L1WNW Wall (G.N2.E17)', 'L1North Wall (G.N2.E18)', 'L1East Wall (G.N2.E19)', 'L1North Wall (G.N2.E20)', 'L1West Wall (G.N2.E21)', 'L1North Wall (G.N2.E22)', 'L1East Wall (G.N2.E23)', 'L1North Wall (G.N2.E24)', 'L1West Wall (G.N2.E25)', 'L1North Wall (G.N2.E26)', 'L1East Wall (G.N2.E27)', 'L1North Wall (G.N2.E28)', 'L1East Wall (G.N2.E29)', 'L1North Wall (G.N2.E30)', 'L1East Wall (G.N2.E31)', 'L1North Wall (G.N2.E32)', 'L1West Wall (G.N2.E33)', 'L2West Wall (G.SSW6.E38)', 'L2South Wall (G.SSW6.E39)', 'L2West Wall (G.WSW17.E75)', 'L2WSW Wall (G.WSW17.E76)', 'L2-2NW Wall (G.NNW3.E11)', 'L2-2NE Wall (G.NNW3.E12)', 'L2-2NW Wall (G.NNW3.E13)', 'L2-2NE Wall (G.NNW3.E14)', 'L2-2NW Wall (G.NNW3.E15)', 'L2-2SW Wall (G.NNW3.E16)', 'L2-2NW Wall (G.NNW3.E17)', 'L2-2SW Wall (G.NNW3.E18)', 'L2-2NW Wall (G.NNW3.E19)', 'L3West Wall (G.S6.E22)', 'L3South Wall (G.S6.E23)', 'L3West Wall (G.WSW10.E33)', 'L3South Wall (G.WSW10.E34)', 'L3WSW Wall (G.WSW10.E35)', 'L3West Wall (M.S23.E113)', 'L3South Wall (M.S23.E114)', 'L3West Wall (M.WSW27.E124)', 'L3South Wall (M.WSW27.E125)', 'L3WSW Wall (M.WSW27.E126)', 'L3West Wall (T.S40.E209)', 'L3South Wall (T.S40.E210)', 'L3Roof (T.S40.E214)', 'L3West Wall (T.WSW44.E224)', 'L3South Wall (T.WSW44.E225)', 'L3WSW Wall (T.WSW44.E226)', 'L3Roof (T.WSW44.E231)', 'L3-2WSW Wall (G.NNW4.E26)', 'L3-2NNW Wall (G.NNW4.E27)', 'L3-2WSW Wall (G.NNW4.E28)', 'L3-2WSW Wall (M.NNW10.E77)', 'L3-2NNW Wall (M.NNW10.E78)', 'L3-2WSW Wall (M.NNW10.E79)', 'L3-2WSW Wall (T.NNW16.E131)', 'L3-2NNW Wall (T.NNW16.E132)', 'L3-2WSW Wall (T.NNW16.E133)', 'L3-2Roof (T.NNW16.E134)', 'ENTRWest Wall (G.W1.E1)', 'ENTRSouth Wall (G.W1.E2)', 'ENTRNorth Wall (G.W1.E3)', 'ENTRRoof (G.W1.E4)', 'L1West Wall (G.WSW4.E36)', 'L1South Wall (G.WSW4.E37)', 'L1SW Wall (G.WSW4.E38)', 'L1West Wall (G.W6.E40)', 'L1West Wall (G.SSW8.E41)', 'COMPWest Wall (G.W1.E1)', 'COMPSouth Wall (G.W1.E2)', 'COMPRoof (G.W1.E3)', 'L1West Wall (G.W3.E34)', 'L1West Wall (G.W3.E35)', 'L1South Wall (G.SW9.E42)', 'L2NNW Wall (G.SW9.E44)', 'L2West Wall (G.W14.E64)', 'L2South Wall (G.SW16.E73)', 'L2West Wall (G.SW16.E74)', 'L3West Wall (G.SW9.E31)', 'L3South Wall (G.SW9.E32)', 'L3NNW Wall (G.SW11.E40)', 'L3West Wall (M.SW26.E122)', 'L3South Wall (M.SW26.E123)', 'L3NNW Wall (M.SW28.E131)', 'L3Roof (T.C38.E205)', 'L3Roof (T.C42.E220)', 'L3West Wall (T.SW43.E221)', 'L3South Wall (T.SW43.E222)', 'L3Roof (T.SW43.E223)', 'L3NNW Wall (T.SW45.E232)', 'L3Roof (T.SW45.E235)', 'L3Roof (T.E46.E238)', 'L3-2Roof (T.C15.E120)', 'MECHNorth Wall (G.W1.E1)', 'MECHWest Wall (G.W1.E2)', 'MECHSouth Wall (G.W1.E3)', 'MECHEast Wall (G.W1.E4)', 'MECHRoof (G.W1.E5)', 'POOLNorth Wall (G.W1.E1)', 'POOLWSW Wall (G.W1.E2)', 'POOLSouth Wall (G.W1.E3)', 'POOLEast Wall (G.W1.E4)', 'POOLRoof (G.W1.E5)', 'L2-2SSE Wall (G.SSW4.E20)', 'L2-2ENE Wall (G.SSW4.E21)', 'L2-2SSE Wall (G.SSW4.E22)', 'L2-2NNW Wall (G.SSW4.E23)', 'L2-2WSW Wall (G.SSW4.E24)']" + } + ], + "messages": "" + } + }, + "5-3": { + "L3Ceiling (G.ENE1.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.SE2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.NE3.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.NW5.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.WSW7.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.ENE13.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.WSW14.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.N15.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.SSE16.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.S17.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.ENE18.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.SE19.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.NE20.I138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.NW22.I142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.WSW24.I176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.ENE30.I231)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.WSW31.I234)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.N32.I241)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.SSE33.I247)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.S34.I250)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Roof (T.ENE35.E189)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.SE36.E196)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.NE37.E204)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.NW39.E208)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.WSW41.E219)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.ENE47.E248)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.WSW48.E259)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.N49.E276)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.SSE50.E281)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.S51.E290)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.SSW1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.SE2.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.NNW5.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.SSE6.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.SSW7.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.SE8.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.NNW11.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.SSE12.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSW13.E108)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.SE14.E119)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW17.E148)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSE18.E159)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Ceiling (G.S6.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.WSW10.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.S23.I173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.WSW27.I221)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Roof (T.S40.E214)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.WSW44.E231)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.NNW4.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.NNW10.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW16.E134)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "ENTRRoof (G.W1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "COMPRoof (G.W1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Ceiling (G.C4.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.C8.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.SW9.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.SW11.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (G.E12.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.C21.I140)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3Ceiling (M.C25.I178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.SW26.I180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.SW28.I223)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Ceiling (M.E29.I225)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Roof (T.C38.E205)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3Roof (T.C42.E220)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Roof (T.SW43.E223)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Roof (T.SW45.E235)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.E46.E238)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.C3.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.C9.I44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2Roof (T.C15.E120)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "MECHRoof (G.W1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "POOLRoof (G.W1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-4": { + "L3Roof (T.ENE35.E189)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.SE36.E196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.NE37.E204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.NW39.E208)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.WSW41.E219)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.ENE47.E248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.WSW48.E259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.N49.E276)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.SSE50.E281)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.S51.E290)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSW13.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Roof (T.SE14.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW17.E148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSE18.E159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.S40.E214)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.WSW44.E231)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW16.E134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "ENTRRoof (G.W1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "COMPRoof (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Ceiling (M.C21.I140)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.C38.E205)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Roof (T.SW45.E235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.C9.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Roof (T.C15.E120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "MECHRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "POOLRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-5": { + "BWSW Wall (B.SSE1.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSE1.U3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BWest Wall (B.SSE1.U4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSE1.U5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BENE Wall (B.SSE1.U6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSE1.U7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BNNW Wall (B.SSW6.U25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BWSW Wall (B.SSW6.U26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSW6.U27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BENE Wall (B.SSW6.U28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSW6.U29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSW Wall (B.SE8.U36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BNE Wall (B.SE8.U38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BNE Wall (B.SE8.U40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U41)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BNW Wall (B.NNW4.U14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BNW Wall (B.NNW4.U15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BWSW Wall (B.NNW4.U16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BNNW Wall (B.NNW4.U17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BWSW Wall (B.NNW4.U18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BNNW Wall (B.NNW4.U19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BWSW Wall (B.NNW4.U20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BSE Wall (B.ENE3.U10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BNE Wall (B.ENE3.U11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BNW Wall (B.ENE3.U12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BSE Wall (B.SE7.U31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BSW Wall (B.SE7.U32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BSE Wall (B.SE7.U33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BNW Wall (B.N5.U22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BNE Wall (B.N5.U23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-6": { + "BWSW Wall (B.SSE1.U2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSE1.U3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BWest Wall (B.SSE1.U4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSE1.U5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BENE Wall (B.SSE1.U6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSE1.U7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNNW Wall (B.SSW6.U25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BWSW Wall (B.SSW6.U26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSW6.U27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BENE Wall (B.SSW6.U28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSSE Wall (B.SSW6.U29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSW Wall (B.SE8.U36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNE Wall (B.SE8.U38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNE Wall (B.SE8.U40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSE Wall (B.SE8.U41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNW Wall (B.NNW4.U14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNW Wall (B.NNW4.U15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BWSW Wall (B.NNW4.U16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNNW Wall (B.NNW4.U17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BWSW Wall (B.NNW4.U18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNNW Wall (B.NNW4.U19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BWSW Wall (B.NNW4.U20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSE Wall (B.ENE3.U10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNE Wall (B.ENE3.U11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNW Wall (B.ENE3.U12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSE Wall (B.SE7.U31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSW Wall (B.SE7.U32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BSE Wall (B.SE7.U33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNW Wall (B.N5.U22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "BNE Wall (B.N5.U23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "below_grade_wall_c_factor", + "value": "0.1963220225248917", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor", + "value": "1.14", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_c_factor_res", + "value": "None" + }, + { + "variable": "target_c_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-7": { + "BWSW Wall (B.SSE1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BENE Wall (B.SSW6.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BNE Wall (B.SE8.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BNW Wall (B.SE8.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BWSW Wall (B.SE8.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.W5.E39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.W5.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.E50)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.E52)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NNW Wall (G.ENE13.E54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E55)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.ENE13.E56)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1ESE Wall (G.ENE13.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.ENE13.I28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E67)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E69)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E71)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E72)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E73)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E74)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E75)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E76)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SE Wall (G.S19.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.S19.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.S19.I65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.I66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1North Wall (G.S19.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.I68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E77)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW20.E78)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E79)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW20.E80)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW20.E82)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E83)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW20.E84)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E85)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSW Wall (G.WSW20.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2ESE Wall (G.SE1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.SE1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.I5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.SE1.I6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.I7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.SE1.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NNE Wall (G.NW3.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WNW Wall (G.NW3.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSW5.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSW5.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSW5.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NNW Wall (G.SSW5.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSW5.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.E39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.NNE1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.NNE1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.NNE1.I2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2West Wall (G.NNE1.I3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2South Wall (G.NNE1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2South Wall (G.N2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.NE3.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.NE3.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SE Wall (G.NE3.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NE Wall (G.NE3.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NW Wall (G.NE3.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NE Wall (G.NE3.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.NE3.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.NE3.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SSE Wall (G.NE3.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE4.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE4.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SE Wall (G.SE5.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NE Wall (G.SE5.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SE Wall (G.SE5.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SE5.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SW Wall (G.SE5.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SE5.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 751": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 752": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 753": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E41)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW8.E42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW8.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E48)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.E49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E50)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.E51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E52)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW12.E53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW12.E55)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E56)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NW Wall (G.WSW12.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSW Wall (G.WSW12.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E57)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE13.E58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE13.E60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE13.E62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2ESE Wall (G.ENE13.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.ENE13.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NW Wall (G.ENE13.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.ENE13.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.ENE13.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE13.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.S15.E65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2East Wall (G.S15.E67)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.S15.E69)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2East Wall (G.S15.E71)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E72)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2North Wall (G.S15.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2East Wall (G.SSE18.E78)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.SSE18.E79)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2West Wall (G.SSE18.E80)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.SSE18.E81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2East Wall (G.SSE18.I106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.SSE18.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.SSE18.I108)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2North Wall (G.SSE18.I109)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.SE1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.SE1.I5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.I6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.SE1.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SE1.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSE5.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSE5.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.SSE5.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.N6.E42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.N6.E43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.N6.E44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W20": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.N6.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.N6.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.N6.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.N6.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.N6.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 754": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 755": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 756": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 757": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 758": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 791": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 792": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (G.ENE1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SW Wall (G.SE2.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (G.SE2.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NE Wall (G.SE2.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (G.SE2.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.SE2.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (G.SE2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SW Wall (G.SE2.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.SE2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 759": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (G.NE3.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NW Wall (G.NE3.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NE Wall (G.NE3.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.NE3.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.NE3.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.NE3.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (G.NE3.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (G.NE3.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.NW5.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.NW5.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW7.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW7.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE13.E47)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E48)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE13.E49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E50)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE13.E51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E52)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.ENE13.E53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.ENE13.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (G.ENE13.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.ENE13.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE13.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 793": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW14.E55)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E56)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW14.E57)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW14.E59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW14.E61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NW Wall (G.WSW14.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 763": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E67)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E69)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E71)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E72)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E73)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E74)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E75)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E76)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E77)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E78)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E79)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.I112)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3South Wall (G.N15.I113)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.I114)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (G.SSE16.E80)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.SSE16.E81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.SSE16.E82)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.SSE16.E83)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (G.SSE16.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (G.SSE16.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.SSE16.I120)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3North Wall (G.SSE16.I121)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (G.S17.E84)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E85)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (G.S17.E86)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E87)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (G.S17.E88)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E89)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (G.S17.E90)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E91)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.S17.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.E92)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E93)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.E94)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E95)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE18.E96)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E97)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE18.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (M.ENE18.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SW Wall (M.SE19.E99)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (M.SE19.E100)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NE Wall (M.SE19.E101)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (M.SE19.E102)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.SE19.E103)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (M.SE19.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SW Wall (M.SE19.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.SE19.I134)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 769": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (M.NE20.E104)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NW Wall (M.NE20.E105)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NE Wall (M.NE20.E106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.NE20.E107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.NE20.E108)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.NE20.E109)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (M.NE20.E110)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (M.NE20.I137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.NW22.E111)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.NW22.E112)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E118)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E119)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E120)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW24.E121)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW24.I175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E137)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE30.E138)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E139)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE30.E140)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E141)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE30.E142)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E143)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.ENE30.E144)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.ENE30.I227)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (M.ENE30.I228)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.ENE30.I229)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE30.I230)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 774": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E145)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW31.E146)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E147)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW31.E148)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E149)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW31.E150)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E151)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW31.E152)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E153)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NW Wall (M.WSW31.I233)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 773": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E155)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E156)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E157)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E158)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E159)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E160)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E161)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E162)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E163)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E164)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E165)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E166)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E167)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E168)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E169)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E170)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.I236)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.I237)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3South Wall (M.N32.I238)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.I239)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.I240)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (M.SSE33.E171)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.SSE33.E172)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.SSE33.E173)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.SSE33.E174)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (M.SSE33.I243)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (M.SSE33.I244)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.SSE33.I245)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3North Wall (M.SSE33.I246)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (M.S34.E175)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E176)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (M.S34.E177)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E178)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (M.S34.E179)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E180)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (M.S34.E181)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E182)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.S34.I249)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.E183)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E184)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.E185)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E186)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE35.E187)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E188)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.I252)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE35.I253)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (T.ENE35.I254)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SW Wall (T.SE36.E191)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (T.SE36.E192)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NE Wall (T.SE36.E193)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (T.SE36.E194)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.SE36.E195)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (T.SE36.I256)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SW Wall (T.SE36.I257)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.SE36.I258)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 780": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (T.NE37.E197)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NW Wall (T.NE37.E198)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NE Wall (T.NE37.E199)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.NE37.E200)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.NE37.E201)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.NE37.E202)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (T.NE37.E203)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (T.NE37.I260)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.NW39.E206)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.NW39.E207)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E215)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E216)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E217)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW41.E218)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW41.I294)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E240)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE47.E241)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E242)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE47.E243)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E244)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE47.E245)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E246)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.ENE47.E247)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.ENE47.I340)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (T.ENE47.I341)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.ENE47.I342)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE47.I343)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 783": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E249)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW48.E250)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E251)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW48.E252)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E253)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW48.E254)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E255)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW48.E256)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E257)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NW Wall (T.WSW48.I345)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 789": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E260)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E261)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E262)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E263)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E264)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E265)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E266)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E267)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E268)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E269)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E270)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E271)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E272)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E273)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E274)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E275)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.I347)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.I348)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3South Wall (T.N49.I349)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.I350)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.I351)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (T.SSE50.E277)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.SSE50.E278)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.SSE50.E279)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.SSE50.E280)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (T.SSE50.I353)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (T.SSE50.I354)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.SSE50.I355)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.SSE50.I356)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.S51.E282)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E283)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (T.S51.E284)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E285)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.S51.E286)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E287)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (T.S51.E288)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E289)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.S51.I358)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSW1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NNW Wall (G.SSW1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSW1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.SE2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.I7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.SE2.I8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.I9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.SE2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SE2.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW5.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW5.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW5.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW5.E38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "Interior Wall 804": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 805": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 806": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 807": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 836": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.E44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E47)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E48)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.E50)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSW7.E52)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSW7.E53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSW7.E54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NNW Wall (M.SSW7.E55)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSW7.E56)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSW7.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.E57)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.E59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.E61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.E63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.SE8.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.I36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.SE8.I37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.I38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.SE8.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SE8.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E82)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW11.E83)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E84)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW11.E85)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E86)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW11.E87)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E88)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW11.E89)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E90)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "Interior Wall 818": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 819": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 820": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 821": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 822": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E93)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E94)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.E95)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E96)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E97)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E98)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E99)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E100)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.E101)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E102)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSW13.E103)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSW13.E104)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSW13.E105)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NNW Wall (T.SSW13.E106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSW13.E107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSW13.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.E109)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E110)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.E111)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E112)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.E113)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E114)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.E115)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E116)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E117)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E118)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.SE14.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.I64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.SE14.I65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.I66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.SE14.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SE14.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E137)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW17.E138)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E139)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW17.E140)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E141)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW17.E142)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E143)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW17.E144)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E145)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "Interior Wall 832": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 833": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 834": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 835": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E149)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E150)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.E151)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E152)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E153)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E154)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E155)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E156)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.E157)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E158)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BSW Wall (B.NNW4.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BNW Wall (B.NNW4.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BNE Wall (B.NNW4.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BSSE Wall (B.NNW4.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BSSE Wall (B.NNW4.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BSE Wall (B.NNW4.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BSE Wall (B.NNW4.I12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "BNE Wall (B.NNW4.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SE Wall (G.E1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NE Wall (G.E1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SE Wall (G.E1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NNW Wall (G.E1.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSE Wall (G.E1.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NNW Wall (G.E1.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1WSW Wall (G.E1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1NW Wall (G.E1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 734": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SE Wall (G.N2.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NE Wall (G.N2.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NW Wall (G.N2.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NE Wall (G.N2.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1WNW Wall (G.N2.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.N2.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1South Wall (G.N2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1South Wall (G.N2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SW Wall (G.N2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1ENE Wall (G.N2.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SSE Wall (G.N2.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Pkg Grg W1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W15": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW14.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1ENE Wall (G.WSW14.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW14.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1ENE Wall (G.WSW14.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1East Wall (G.WSW14.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW14.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1East Wall (G.WSW14.I35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1North Wall (G.WSW14.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW14.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW14.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW14.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW14.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SW Wall (G.SSW18.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SSE Wall (G.SSW18.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW18.I56)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW18.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.SSW18.I58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1SSE Wall (G.SSW18.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1WSW Wall (G.SSW18.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1NNW Wall (G.SSW18.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Exterior Wall 622": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 623": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W16": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W17": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W18": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W19": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1-2NNW Wall (G.NNW2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NNW2.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NNW2.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NNW2.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NNW2.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NNW Wall (G.NNW2.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.NNW2.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.NNW2.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 749": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 750": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.SSW6.E38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.E39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L2SE Wall (G.SSW6.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSW Wall (G.SSW6.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSE Wall (G.SSW6.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SSW6.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NE Wall (G.SSW6.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.SSW6.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.SSW6.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2East Wall (G.SSW6.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.I29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SW Wall (G.SSW6.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2WSW Wall (G.SSW6.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SSW6.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SW Wall (G.SSW6.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.E75)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.E76)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W13": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW17.I61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.I62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.I67)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW17.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NE Wall (G.WSW17.I69)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW17.I70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW17.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NE Wall (G.WSW17.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2East Wall (G.WSW17.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW17.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2East Wall (G.WSW17.I101)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2North Wall (G.WSW17.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2North Wall (G.WSW17.I104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2NNE Wall (G.NNW3.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2WNW Wall (G.NNW3.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.NNW3.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.S6.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (G.S6.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.I21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (G.S6.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.S6.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (G.S6.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (G.S6.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 760": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 761": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 762": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW10.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W12": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (G.WSW10.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.I58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.I59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW10.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (G.WSW10.I63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3SE Wall (G.WSW10.I64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (G.WSW10.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (G.WSW10.I93)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3North Wall (G.WSW10.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 766": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 767": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 768": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.S23.E113)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.E114)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (M.S23.I144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.I146)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (M.S23.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.S23.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (M.S23.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I159)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I160)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I161)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I162)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I164)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I165)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (M.S23.I167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I169)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I170)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I171)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 770": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 771": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 772": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.E124)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.E125)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW27.E126)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W11": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (M.WSW27.I182)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.I183)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.I184)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW27.I186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I187)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (M.WSW27.I188)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3SE Wall (M.WSW27.I189)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I190)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I191)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I196)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I199)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I200)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I202)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I203)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I204)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I205)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I206)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I208)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I209)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I210)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I211)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I212)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I213)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I214)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I215)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (M.WSW27.I216)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.I217)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (M.WSW27.I218)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3North Wall (M.WSW27.I219)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.I220)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 775": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 776": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 777": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.S40.E209)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.E210)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3East Wall (T.S40.I264)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.I265)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.I266)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.S40.I267)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.I268)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.S40.I269)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I270)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (T.S40.I271)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I272)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I273)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I274)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I275)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I276)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I277)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I278)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I279)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I280)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I281)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I282)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I283)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I284)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I285)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I286)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (T.S40.I287)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I288)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I289)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I290)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I291)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I292)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 781": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 782": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 794": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.E224)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.E225)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW44.E226)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W10": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.WSW44.I298)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.I299)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.I300)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I301)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW44.I302)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I303)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NE Wall (T.WSW44.I304)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3SE Wall (T.WSW44.I305)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I306)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I307)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I308)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I309)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I310)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I311)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I312)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I313)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I314)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I315)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I316)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I317)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I318)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I319)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I320)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I321)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I322)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I323)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I324)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I325)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I326)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I327)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I328)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I329)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I330)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I331)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (T.WSW44.I332)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.I333)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3East Wall (T.WSW44.I334)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3North Wall (T.WSW44.I335)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.I336)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 784": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 785": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 788": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.NNW4.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NNW Wall (G.NNW4.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.NNW4.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W25": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW4.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW4.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW4.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.NNW4.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.NNW4.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.NNW4.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 795": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 796": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 797": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 798": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 799": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 800": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 801": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 802": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 803": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.NNW10.E77)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NNW Wall (M.NNW10.E78)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.NNW10.E79)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W21": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW10.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW10.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW10.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.NNW10.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.NNW10.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.NNW10.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 808": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 809": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 810": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 811": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 812": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 813": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 814": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 815": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 816": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 817": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.NNW16.E131)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2NNW Wall (T.NNW16.E132)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.NNW16.E133)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W22": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW16.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW16.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW16.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.NNW16.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.NNW16.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.NNW16.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 823": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 824": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 825": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 826": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 827": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 828": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 829": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 830": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 831": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "ENTRWest Wall (G.W1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "ENTRSouth Wall (G.W1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "ENTRNorth Wall (G.W1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "ENTREast Wall (G.W1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW15.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SE Wall (G.WSW15.I46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1SE Wall (G.WSW15.I47)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1NE Wall (G.WSW15.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 790": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.C21.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Exterior Wall 705": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1NE Wall (G.E17.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SE Wall (G.E17.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BSE Wall (B.ENE3.I2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "BSW Wall (B.ENE3.I3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "BNW Wall (B.ENE3.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "BSW Wall (B.ENE3.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BNE Wall (B.SE7.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "BNW Wall (B.SE7.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW4.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW4.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1SW Wall (G.WSW4.E38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW4.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.WSW4.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.W6.E40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1East Wall (G.W6.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1South Wall (G.W6.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.W6.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.SSW8.E41)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW8.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW8.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.SSW8.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.SSW8.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "COMPWest Wall (G.W1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "COMPSouth Wall (G.W1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "COMPNorth Wall (G.W1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "COMPEast Wall (G.W1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.C2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1West Wall (G.W3.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.W3.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1South Wall (G.SW9.E42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1North Wall (G.SW9.I23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "Interior Wall 748": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Exterior Wall 706": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Exterior Wall 707": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW10.I24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW10.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 740": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 742": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1NE Wall (G.SSW16.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SW Wall (G.SSW16.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1SE Wall (G.SSW16.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.C4.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SW9.E44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W3": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W7": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W14": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW10.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2SE Wall (G.E11.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2NE Wall (G.E11.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.W14.E64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L2South Wall (G.W14.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2South Wall (G.SW16.E73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2West Wall (G.SW16.E74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (G.SW9.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (G.SW9.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (G.SW11.E40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W4": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W5": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Interior Wall 764": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 765": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (M.SW26.E122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (M.SW26.E123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (M.SW28.E131)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W24": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W6": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Interior Wall 778": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 779": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3West Wall (T.SW43.E221)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3South Wall (T.SW43.E222)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3NNW Wall (T.SW45.E232)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W23": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Pkg Grg W8": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "Interior Wall 786": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Interior Wall 787": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.C3.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.C9.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.C15.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MECHNorth Wall (G.W1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MECHWest Wall (G.W1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MECHSouth Wall (G.W1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "MECHEast Wall (G.W1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "POOLNorth Wall (G.W1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "POOLWSW Wall (G.W1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "POOLSouth Wall (G.W1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "POOLEast Wall (G.W1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSW4.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSW4.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSW4.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.SSW4.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSW4.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.SSW4.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-8": { + "L1West Wall (G.W5.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.ENE13.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.ENE13.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.ENE13.I28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.S19.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.I68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW20.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW20.E80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW20.E82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW20.E84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.SE1.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.I7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSW5.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSW5.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSW5.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NNW Wall (G.SSW5.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSW5.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.NNE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.NNE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.NNE1.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.NNE1.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.NE3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.NE3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.NE3.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Wall (G.NE3.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NW Wall (G.NE3.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Wall (G.NE3.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.NE3.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.NE3.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE4.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE4.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.SE5.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Wall (G.SE5.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.SE5.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SE5.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW8.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW12.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW12.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE13.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE13.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE13.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.S15.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.S15.E67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.S15.E69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.S15.E71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.SSE18.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.SSE18.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.SSE18.E80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.SSE18.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.SSE18.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.SSE18.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.SE1.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSE5.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSE5.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.N6.E42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.N6.E43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.N6.E44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W20": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SW Wall (G.SE2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (G.SE2.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (G.SE2.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (G.SE2.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.SE2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (G.NE3.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Wall (G.NE3.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (G.NE3.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.NE3.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.NE3.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.NE3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (G.NE3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.NW5.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.NW5.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW7.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE13.E47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE13.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE13.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.ENE13.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW14.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW14.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW14.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW14.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.N15.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.I114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.SSE16.E80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.SSE16.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.SSE16.E82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.SSE16.E83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.SSE16.I120)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.SSE16.I121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.S17.E84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.S17.E86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.S17.E88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.S17.E90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.E92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.E94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE18.E96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SW Wall (M.SE19.E99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (M.SE19.E100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (M.SE19.E101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (M.SE19.E102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.SE19.E103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (M.NE20.E104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Wall (M.NE20.E105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (M.NE20.E106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.NE20.E107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.NE20.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.NE20.E109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (M.NE20.E110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.NW22.E111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.NW22.E112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW24.E121)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE30.E138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE30.E140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE30.E142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.ENE30.E144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW31.E146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E147)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW31.E148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW31.E150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW31.E152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E160)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E161)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E162)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E163)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E164)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E165)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E166)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E167)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E168)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E169)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E170)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.I237)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.N32.I238)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.I239)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.SSE33.E171)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.SSE33.E172)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.SSE33.E173)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.SSE33.E174)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.SSE33.I245)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.SSE33.I246)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.S34.E175)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E176)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.S34.E177)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E178)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.S34.E179)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E180)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.S34.E181)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E182)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.E183)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E184)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.E185)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E186)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE35.E187)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E188)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SW Wall (T.SE36.E191)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (T.SE36.E192)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (T.SE36.E193)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (T.SE36.E194)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.SE36.E195)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (T.NE37.E197)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Wall (T.NE37.E198)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (T.NE37.E199)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.NE37.E200)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.NE37.E201)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.NE37.E202)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (T.NE37.E203)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.NW39.E206)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.NW39.E207)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E215)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E216)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E217)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW41.E218)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E240)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE47.E241)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E242)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE47.E243)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E244)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE47.E245)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E246)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.ENE47.E247)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E249)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW48.E250)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E251)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW48.E252)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E253)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW48.E254)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E255)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW48.E256)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E257)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E260)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E261)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E262)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E263)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E264)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E265)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E266)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E267)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E268)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E269)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E270)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E271)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E272)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E273)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E274)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E275)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.I348)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.N49.I349)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.I350)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.SSE50.E277)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.SSE50.E278)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.SSE50.E279)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.SSE50.E280)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.SSE50.I355)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.SSE50.I356)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.S51.E282)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E283)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.S51.E284)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E285)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.S51.E286)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E287)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.S51.E288)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E289)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NNW Wall (G.SSW1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSW1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.I7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.SE2.I8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.I9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW5.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW5.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW5.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW5.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSW7.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSW7.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSW7.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NNW Wall (M.SSW7.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSW7.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.SE8.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW11.E83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW11.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW11.E87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW11.E89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.E95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.E101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSW13.E103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSW13.E104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSW13.E105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NNW Wall (T.SSW13.E106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSW13.E107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.E109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.E111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.E113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E114)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.E115)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E117)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.SE14.I65)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW17.E138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW17.E140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW17.E142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW17.E144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.E151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E154)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.E157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BSE Wall (B.NNW4.I12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.E1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Wall (G.E1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.E1.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.E1.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.E1.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.E1.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.N2.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Wall (G.N2.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NW Wall (G.N2.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Wall (G.N2.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WNW Wall (G.N2.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W15": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.WSW14.I35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW18.I56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.SSW18.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 622": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 623": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W16": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W17": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W18": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W19": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.SSW6.E38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.E39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.I29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.E75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.E76)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W13": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW17.I61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.I62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.I67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Wall (G.WSW17.I69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW17.I70)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.WSW17.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.S6.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.I21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I45)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.E33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW10.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W12": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.I58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.I59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (G.WSW10.I63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (G.WSW10.I64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.WSW10.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.S23.E113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.E114)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.I146)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I170)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.E124)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.E125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW27.E126)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W11": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.I183)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.I184)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (M.WSW27.I188)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (M.WSW27.I189)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.WSW27.I218)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.S40.E209)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.E210)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.I266)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I290)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.E224)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.E225)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW44.E226)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W10": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.I299)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.I300)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (T.WSW44.I304)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Wall (T.WSW44.I305)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.WSW44.I334)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.NNW4.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NNW Wall (G.NNW4.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.NNW4.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W25": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.NNW10.E77)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NNW Wall (M.NNW10.E78)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.NNW10.E79)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W21": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.NNW16.E131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NNW Wall (T.NNW16.E132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.NNW16.E133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W22": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTRWest Wall (G.W1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTRSouth Wall (G.W1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTRNorth Wall (G.W1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.WSW15.I46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.WSW15.I47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 705": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BSE Wall (B.ENE3.I2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BSW Wall (B.ENE3.I3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNW Wall (B.ENE3.I4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNE Wall (B.SE7.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW4.E36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW4.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SW Wall (G.WSW4.E38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.W6.E40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.SSW8.E41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "COMPWest Wall (G.W1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "COMPSouth Wall (G.W1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.W3.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.W3.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.SW9.I23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 706": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Exterior Wall 707": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW10.I24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SW9.E44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.W14.E64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.SW11.E40)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.SW28.E131)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W24": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.SW45.E232)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W23": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W8": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MECHNorth Wall (G.W1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MECHWest Wall (G.W1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MECHSouth Wall (G.W1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MECHEast Wall (G.W1.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "POOLNorth Wall (G.W1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "POOLWSW Wall (G.W1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "POOLSouth Wall (G.W1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "POOLEast Wall (G.W1.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSW4.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSW4.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSW4.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.SSW4.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSW4.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.06399610682107501", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-9": { + "L1-2Flr (G.SE1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2Flr (G.SSW5.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2Flr (G.SSE6.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.NNE1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.N2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.NE3.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.ENE4.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.SE5.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.WSW8.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.WSW12.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.ENE13.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.S15.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.SSE18.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2Flr (G.SE1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2Flr (G.SSE5.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2Flr (G.N6.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.ENE1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.SE2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.NE3.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Exp flr 4": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "Exp flr 4 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "L3Flr (G.WSW7.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.ENE13.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.WSW14.I107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Exp flr 5": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "Exp flr 5 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "L3Flr (G.N15.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.SSE16.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.S17.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.ENE18.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.SE19.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.NE20.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.NW22.I141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.WSW24.I174)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.ENE30.I226)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.WSW31.I232)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.N32.I235)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.SSE33.I242)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.S34.I248)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.ENE35.I251)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.SE36.I255)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.NE37.I259)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.NW39.I262)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.WSW41.I293)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.ENE47.I339)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.WSW48.I344)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.N49.I346)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.SSE50.I352)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.S51.I357)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (G.SSW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (G.SE2.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (G.NNW5.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (G.SSE6.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (M.SSW7.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (M.SE8.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (M.NNW11.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (M.SSE12.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (T.SSW13.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (T.SE14.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (T.NNW17.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (T.SSE18.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2Flr (G.NNW2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.SSW6.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.WSW17.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2Flr (G.NNW3.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Exp flr 6": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Exp flr 6 is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "L3Flr (G.S6.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.WSW10.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.S23.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.WSW27.I181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.S40.I263)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.WSW44.I297)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (G.NNW4.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (M.NNW10.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (T.NNW16.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2-2Flr (G.C2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1-2Flr (G.C4.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.C7.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "Exposed flr": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Exposed flr is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "L2Flr (G.WSW10.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.E11.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.W14.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L2Flr (G.SW16.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.C4.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.C8.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.SW9.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.SW11.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (G.E12.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.C21.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.C25.I177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.SW26.I179)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.SW28.I222)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (M.E29.I224)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.C38.I261)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "L3Flr (T.C38.I261) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "L3Flr (T.C42.I295)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.SW43.I296)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.SW45.I337)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3Flr (T.E46.I338)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (G.C3.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (M.C9.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L3-2Flr (T.C15.I69)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "L3-2Flr (T.C15.I69) is a regulated floor surface. Conduct a manual check to confirm that Baseline floor assemblies conform with assemblies detailed in Appendix A." + }, + "L2-2Flr (G.SSW4.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-10": { + "Exp flr 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.03153008437530151", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.038", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exp flr 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.03153008437530151", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.038", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exp flr 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.051937342156073714", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "Exposed flr": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.051937342156073714", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.052", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3Flr (T.C38.I261)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.069", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "L3-2Flr (T.C15.I69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "floor_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.069", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-11": { + "BFlr (B.SSE1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BFlr (B.SSW6.U24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BFlr (B.SE8.U34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.W5.U5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.ENE13.U13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.S19.U19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.WSW20.U20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "SOG Flr 2": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BFlr (B.NNW4.U13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.E1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.N2.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.C7.U7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.WSW14.U14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.SSW18.U18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "SOG Flr": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "SOG Flr 3": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "ENTRFlr (G.W1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.WSW15.U15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.C21.U21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "L1Flr (G.SW11.U11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.E17.U17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "BFlr (B.ENE3.U9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "BFlr (B.SE7.U30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.WSW4.U4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.W6.U6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.SSW8.U8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "COMPFlr (G.W1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "BFlr (B.C2.U8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "BFlr (B.N5.U21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.W3.U3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.SW9.U9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1Flr (G.WSW10.U10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L1Flr (G.C12.U12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "L1Flr (G.SSW16.U16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MECHFlr (G.W1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + }, + "POOLFlr (G.W1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-12": { + "BFlr (B.SSE1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "BFlr (B.SSW6.U24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "BFlr (B.SE8.U34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.W5.U5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.ENE13.U13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.S19.U19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.WSW20.U20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "SOG Flr 2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "BFlr (B.NNW4.U13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.E1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.N2.U2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.C7.U7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.WSW14.U14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.SSW18.U18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "SOG Flr": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "SOG Flr 3": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "ENTRFlr (G.W1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.WSW15.U15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.C21.U21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.SW11.U11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "BFlr (B.ENE3.U9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "BFlr (B.SE7.U30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.WSW4.U4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.W6.U6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.SSW8.U8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "COMPFlr (G.W1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "BFlr (B.C2.U8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "BFlr (B.N5.U21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.W3.U3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "L1Flr (G.WSW10.U10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "MECHFlr (G.W1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "POOLFlr (G.W1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + } + }, + "5-13": { + "BWSW Wall (B.SSE1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BENE Wall (B.SSW6.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNE Wall (B.SE8.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNW Wall (B.SE8.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BWSW Wall (B.SE8.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.W5.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ESE Wall (G.ENE13.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.S19.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.S19.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.S19.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSW Wall (G.WSW20.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2Flr (G.SE1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ESE Wall (G.SE1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.SE1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.SE1.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NNE Wall (G.NW3.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WNW Wall (G.NW3.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2Flr (G.SSW5.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2Flr (G.SSE6.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.NNE1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.NNE1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.N2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.N2.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.NE3.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.NE3.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.ENE4.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.SE5.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SW Wall (G.SE5.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SE5.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 751": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 752": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 753": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.WSW8.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW8.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.WSW12.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NW Wall (G.WSW12.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSW Wall (G.WSW12.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.ENE13.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ESE Wall (G.ENE13.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.ENE13.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NW Wall (G.ENE13.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.ENE13.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.ENE13.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE13.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.S15.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.S15.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.SSE18.I105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.SSE18.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.SSE18.I107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2Flr (G.SE1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.SE1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.SE1.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SE1.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2Flr (G.SSE5.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.SSE5.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2Flr (G.N6.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.N6.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.N6.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.N6.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.N6.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.N6.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 754": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 755": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 756": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 757": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 758": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 791": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 792": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.ENE1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.ENE1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.ENE1.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.SE2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.SE2.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SW Wall (G.SE2.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.SE2.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.SE2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 759": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.NE3.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.NE3.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.NE3.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.NW5.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.WSW7.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW7.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.WSW7.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.ENE13.I101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.ENE13.I102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.ENE13.I103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.ENE13.I104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE13.I105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.ENE13.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 793": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.WSW14.I107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Wall (G.WSW14.I108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.WSW14.I109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 763": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.N15.I110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.I111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.I115)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.N15.I116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.SSE16.I117)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.SSE16.I118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.SSE16.I119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.SSE16.I122)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.S17.I123)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.S17.I124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.S17.I125)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.ENE18.I126)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.I127)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE18.I128)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.ENE18.I129)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.ENE18.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.SE19.I131)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.SE19.I132)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SW Wall (M.SE19.I133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.SE19.I134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.SE19.I135)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 769": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.NE20.I136)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.NE20.I137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.NE20.I138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.NW22.I141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.NW22.I142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.WSW24.I174)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW24.I175)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.WSW24.I176)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.ENE30.I226)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.ENE30.I227)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.ENE30.I228)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.ENE30.I229)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE30.I230)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.ENE30.I231)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 774": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.WSW31.I232)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Wall (M.WSW31.I233)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.WSW31.I234)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 773": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.N32.I235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.I236)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.I240)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.N32.I241)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.SSE33.I242)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.SSE33.I243)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.SSE33.I244)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.SSE33.I247)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.S34.I248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.S34.I249)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.S34.I250)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.ENE35.I251)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.I252)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE35.I253)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.ENE35.I254)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.SE36.I255)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.SE36.I256)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SW Wall (T.SE36.I257)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.SE36.I258)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 780": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.NE37.I259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.NE37.I260)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.NW39.I262)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.WSW41.I293)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW41.I294)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.ENE47.I339)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.ENE47.I340)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.ENE47.I341)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.ENE47.I342)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE47.I343)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 783": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.WSW48.I344)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Wall (T.WSW48.I345)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 789": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.N49.I346)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.I347)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.I351)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.SSE50.I352)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.SSE50.I353)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.SSE50.I354)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.S51.I357)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.S51.I358)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (G.SSW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSW1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.SSW1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (G.SE2.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.SE2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.SE2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SE2.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.SE2.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (G.NNW5.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.NNW5.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 804": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 805": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 806": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 807": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 836": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (G.SSE6.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.SSE6.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (M.SSW7.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSW7.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.SSW7.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (M.SE8.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.SE8.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.SE8.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SE8.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.SE8.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (M.NNW11.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.NNW11.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 818": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 819": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 820": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 821": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 822": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (M.SSE12.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.SSE12.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (T.SSW13.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSW13.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (T.SE14.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.SE14.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.SE14.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SE14.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (T.NNW17.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 832": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 833": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 834": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 835": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (T.SSE18.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BSW Wall (B.NNW4.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNW Wall (B.NNW4.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNE Wall (B.NNW4.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BSSE Wall (B.NNW4.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BSSE Wall (B.NNW4.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BSE Wall (B.NNW4.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNE Wall (B.NNW4.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.E1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NW Wall (G.E1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 734": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.N2.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.N2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.N2.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SW Wall (G.N2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.N2.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.N2.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW14.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.WSW14.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW14.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Wall (G.WSW14.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.WSW14.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW14.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.WSW14.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW14.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW14.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW14.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW14.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW14.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SW Wall (G.SSW18.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.SSW18.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW18.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.SSW18.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.SSW18.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Wall (G.SSW18.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2Flr (G.NNW2.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NNW Wall (G.NNW2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NNW2.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NNW2.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NNW2.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NNW2.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NNW Wall (G.NNW2.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.NNW2.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.NNW2.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.NNW2.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.NNW2.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.NNW2.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 749": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 750": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.SSW6.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.SSW6.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSW Wall (G.SSW6.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.SSW6.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SSW6.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SSW6.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Wall (G.SSW6.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.SSW6.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.SSW6.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.SSW6.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SW Wall (G.SSW6.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.SSW6.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SSW6.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SW Wall (G.SSW6.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.WSW17.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW17.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW17.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Wall (G.WSW17.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW17.I97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Wall (G.WSW17.I98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Wall (G.WSW17.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW17.I100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.WSW17.I102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.I103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Wall (G.WSW17.I104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2Flr (G.NNW3.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NNE Wall (G.NNW3.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WNW Wall (G.NNW3.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.NNW3.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.S6.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.S6.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.S6.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.S6.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.S6.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.S6.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.S6.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.S6.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (G.S6.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.S6.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 760": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 761": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 762": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.WSW10.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.WSW10.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW10.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW10.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW10.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (G.WSW10.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (G.WSW10.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (G.WSW10.I94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.WSW10.I96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 766": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 767": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 768": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.S23.I143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.S23.I144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.I145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.S23.I147)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.I148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.S23.I149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.S23.I151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I154)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I160)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I161)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I162)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I163)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.S23.I164)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.S23.I165)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.S23.I166)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (M.S23.I167)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I168)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I169)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I171)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I172)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.S23.I173)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 770": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 771": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 772": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.WSW27.I181)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.WSW27.I182)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I185)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW27.I186)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I187)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I190)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I191)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I192)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I193)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I194)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I195)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I197)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I198)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I199)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I200)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I201)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I202)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I203)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I205)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I206)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I207)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I208)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I209)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I210)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I211)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW27.I212)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I213)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW27.I214)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (M.WSW27.I215)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (M.WSW27.I216)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.I217)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (M.WSW27.I219)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.I220)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.WSW27.I221)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 775": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 776": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 777": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.S40.I263)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.S40.I264)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.I265)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.S40.I267)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.I268)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.S40.I269)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I270)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.S40.I271)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I272)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I273)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I274)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I275)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I276)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I277)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I278)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I279)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I280)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I281)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I282)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I283)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.S40.I284)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.S40.I285)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.S40.I286)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Wall (T.S40.I287)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I288)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I289)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I291)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I292)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 781": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 782": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 794": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.WSW44.I297)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.WSW44.I298)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I301)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW44.I302)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I303)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I306)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I307)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I308)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I309)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I310)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I311)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I312)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I313)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I314)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I315)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I316)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I317)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I318)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I319)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I320)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I321)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I322)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I323)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I324)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I325)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I326)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I327)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW44.I328)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I329)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW44.I330)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Wall (T.WSW44.I331)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Wall (T.WSW44.I332)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.I333)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Wall (T.WSW44.I335)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.I336)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 784": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 785": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 788": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (G.NNW4.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW4.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW4.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW4.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.NNW4.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.NNW4.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.NNW4.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.NNW4.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 795": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 796": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 797": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 798": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 799": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 800": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 801": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 802": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 803": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (M.NNW10.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW10.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW10.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW10.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.NNW10.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.NNW10.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.NNW10.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.NNW10.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 808": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 809": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 810": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 811": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 812": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 813": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 814": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 815": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 816": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 817": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (T.NNW16.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW16.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW16.I73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW16.I74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.NNW16.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.NNW16.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.NNW16.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 823": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 824": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 825": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 826": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 827": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 828": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 829": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 830": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 831": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTREast Wall (G.W1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW15.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Wall (G.WSW15.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 790": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.C21.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Wall (G.E17.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.E17.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1Flr (G.E17.U17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "proposed_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "baseline_surface_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "proposed_surface_f_factor", + "value": "0.6196171407802519", + "unit": "Btu/(hr*ft*R)" + } + ], + "messages": "" + }, + "BSW Wall (B.ENE3.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "BNW Wall (B.SE7.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW4.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.WSW4.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Wall (G.W6.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.W6.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.W6.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW8.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW8.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.SSW8.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Wall (G.SSW8.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "COMPNorth Wall (G.W1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "COMPEast Wall (G.W1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2Flr (G.C2.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.C2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Wall (G.SW9.E42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 748": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1Flr (G.SW9.U9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "proposed_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "baseline_surface_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "proposed_surface_f_factor", + "value": "0.6196171407802519", + "unit": "Btu/(hr*ft*R)" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW10.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 740": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 742": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1Flr (G.C12.U12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "proposed_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "baseline_surface_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "proposed_surface_f_factor", + "value": "0.6196171407802519", + "unit": "Btu/(hr*ft*R)" + } + ], + "messages": "" + }, + "L1NE Wall (G.SSW16.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SW Wall (G.SSW16.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Wall (G.SSW16.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1Flr (G.SSW16.U16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "proposed_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "baseline_surface_f_factor", + "value": "2.934630831676252", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "proposed_surface_f_factor", + "value": "0.6196171407802519", + "unit": "Btu/(hr*ft*R)" + } + ], + "messages": "" + }, + "L1-2Flr (G.C4.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.C4.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.C7.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Pkg Grg W14": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.WSW10.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW10.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.E11.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Wall (G.E11.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Wall (G.E11.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.W14.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.W14.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Wall (G.SW16.E73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Wall (G.SW16.E74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2Flr (G.SW16.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.C4.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.C4.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.C8.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.C8.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (G.SW9.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (G.SW9.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.SW9.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.SW9.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.SW11.I97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.SW11.I98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (G.E12.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (G.E12.I100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 764": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 765": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.C21.I139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.C25.I177)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.C25.I178)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (M.SW26.E122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (M.SW26.E123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.SW26.I179)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.SW26.I180)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.SW28.I222)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.SW28.I223)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (M.E29.I224)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Ceiling (M.E29.I225)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 778": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 779": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Roof (T.C42.E220)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.014961847289412002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.C42.I295)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Wall (T.SW43.E221)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Wall (T.SW43.E222)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.03726245186933301", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Roof (T.SW43.E223)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.014961847289412002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.SW43.I296)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.SW45.I337)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Roof (T.E46.E238)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.06291971207306603", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.014961847289412002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3Flr (T.E46.I338)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 786": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "Interior Wall 787": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (G.C3.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.C3.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Ceiling (G.C3.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2Flr (M.C9.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.2494000000000001", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.C9.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.C15.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2Flr (G.SSW4.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.19010000000000005", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.SSW4.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.40150000000000013", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-14": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:MULTIFAMILY missing:is_all_new" + } + } + }, + "5-15": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Default Building Segment missing:is_all_new,area_type_vertical_fenestration", + "BASELINE_0_MISSING_DATA": "id:MULTIFAMILY missing:is_all_new" + } + } + }, + "5-16": { + "L1West Wall (G.W5.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "79.68792499999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "79.68792499999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.441825000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.441825000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.434075000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.434075000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.200100000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.200100000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SSE Wall (G.ENE13.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.3214", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.3214", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "325.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "325.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NNW Wall (G.ENE13.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.080475000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.080475000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.ENE13.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.30285", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.30285", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.ENE13.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.556225000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "30.556225000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.ENE13.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "18.190425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "18.190425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1.818575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1.818575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.961125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.961125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1.3055999999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1.3055999999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "10.2986", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "10.2986", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.628674999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.628674999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.8325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.8325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.696975000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.696975000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "61.014700000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "61.014700000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.E73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "9.007025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "9.007025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.22245", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.22245", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.E75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.1327", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.1327", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.S19.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.495025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "30.495025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.S19.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.S19.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.S19.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.484350000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.484350000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW20.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.67675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.67675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "36.767174999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "36.767174999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NNW Wall (G.WSW20.E80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.652300000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.652300000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW20.E82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.209425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.209425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.126775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.126775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SSE Wall (G.WSW20.E84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.264925000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.264925000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1WSW Wall (G.WSW20.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.25655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.25655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.149625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.149625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.6125750000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.6125750000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "90.04135", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "90.04135", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.1628750000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.1628750000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "97.85157500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "97.85157500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8628", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8628", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.187650000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "60.187650000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.538125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.538125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SE Wall (G.SE1.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "135.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "135.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.SE1.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.SE1.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.SE1.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.19310000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.19310000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.267049999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.267049999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.100325000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.100325000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NE Wall (G.NW3.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.236625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.236625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.833825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.833825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.750975000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.750975000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SW Wall (G.NW3.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.90245", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.90245", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NW Wall (G.NW3.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.559200000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "30.559200000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSW5.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.965025000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.965025000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSW5.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.448100000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.448100000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSW5.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.0631", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.0631", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2NNW Wall (G.SSW5.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSW5.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "99.628075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "99.628075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.262425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.262425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.555324999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.555324999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "160.585825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "160.585825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2WSW Wall (G.SSE6.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.035825000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.035825000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "90.09235000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "90.09235000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2ENE Wall (G.SSE6.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1-2SSE Wall (G.SSE6.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.222725", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.222725", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.NNE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "92.11407500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "92.11407500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.NNE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "70.920175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "70.920175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.NNE1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.NNE1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1.4551999999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1.4551999999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.598175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.598175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.91985", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.91985", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "69.26735000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.26735000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.596475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.596475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.7881", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.7881", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "69.122", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.122", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.N2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "58.64447500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "58.64447500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.N2.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.N2.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "91.90625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "91.90625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NNW Wall (G.NE3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.7566250000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.7566250000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.NE3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "37.97800000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "37.97800000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SE Wall (G.NE3.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "17.000425000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "17.000425000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NE Wall (G.NE3.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "86.0931", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "86.0931", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NW Wall (G.NE3.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.9435500000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.9435500000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NE Wall (G.NE3.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.731925", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.731925", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.NE3.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.NE3.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1.4883500000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1.4883500000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.607125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "60.607125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE4.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.55565", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.55565", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE4.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE4.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "150.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "150.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SE Wall (G.SE5.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "33.437725", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "33.437725", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NE Wall (G.SE5.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.503350000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.503350000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SE Wall (G.SE5.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "49.84995000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "49.84995000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.SE5.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "63.404475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "63.404475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "38.5186", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "38.5186", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.179925000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.179925000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW8.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "50.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW8.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "43.326625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "43.326625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.536925000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.536925000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.221975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.221975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NNW Wall (G.WSW12.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.613624999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.613624999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW12.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.466975000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.466975000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW12.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.2292250000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.2292250000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW12.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.89235000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.89235000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.3883", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "28.3883", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE13.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.3877500000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.3877500000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.200100000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.200100000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SSE Wall (G.ENE13.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.2296", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.2296", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "269.17035", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "269.17035", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NNW Wall (G.ENE13.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.8930500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.8930500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2ENE Wall (G.ENE13.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "29.579575000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "29.579575000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.S15.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.534625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.534625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.863025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.863025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.S15.E67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.S15.E69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.S15.E71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.74515", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.74515", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.S15.E72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.7752", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.7752", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.SSE18.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "26.76055", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "26.76055", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.SSE18.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.590025000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.590025000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.SSE18.E80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.SSE18.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.698625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.698625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.SSE18.I108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2North Wall (G.SSE18.I109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.337050000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.337050000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "89.77317500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "89.77317500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.187650000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "60.187650000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "113.15625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "113.15625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SE Wall (G.SE1.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "49.568175000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "49.568175000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.SE1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.SE1.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.SE1.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSE5.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.555324999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.555324999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSE5.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "90.26532500000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "90.26532500000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSE5.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSE5.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.175125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.175125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.N6.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.N6.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.N6.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W20": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.844175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.844175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.18472500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.18472500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.735850000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.735850000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "128.49407499999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "128.49407499999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SW Wall (G.SE2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (G.SE2.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "33.011025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "33.011025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (G.SE2.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.423025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.423025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (G.SE2.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "49.89755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "49.89755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.SE2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.102275000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.102275000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (G.NE3.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "85.778175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "85.778175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NW Wall (G.NE3.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (G.NE3.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.74425000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.74425000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.NE3.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "83.528225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "83.528225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.NE3.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.NE3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.270425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.270425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (G.NE3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.NW5.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.015675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.015675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.NW5.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "97.20727500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "97.20727500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "78.531075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "78.531075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "38.5186", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "38.5186", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW7.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.179925000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.179925000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW7.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "51.495125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "51.495125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.807325000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.807325000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE13.E47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.031375000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.031375000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (G.ENE13.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.3995999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.3995999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "268.898775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "268.898775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (G.ENE13.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.0299000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.0299000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (G.ENE13.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "29.733425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "29.733425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.ENE13.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.201525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.201525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "43.372099999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "43.372099999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW14.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.397950000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.397950000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.1935", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.1935", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (G.WSW14.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.732625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.732625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW14.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.338199999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.338199999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (G.WSW14.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW14.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.8252", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.8252", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "69.267775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.267775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "68.977075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "68.977075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "58.49912500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "58.49912500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.E74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "92.12129999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "92.12129999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "68.53975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "68.53975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.N15.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.N15.I112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.N15.I113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.N15.I114)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.SSE16.E80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.152825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.152825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.SSE16.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.1251", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.1251", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.SSE16.E82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.SSE16.E83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.432575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.432575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.SSE16.I120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.SSE16.I121)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.S17.E84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.201", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.201", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.S17.E86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.S17.E88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.S17.E90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.8743500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.8743500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.S17.E91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.90865000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.90865000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.E92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.844175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.844175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE18.E94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.735850000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.735850000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE18.E96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE18.E97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "128.49407499999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "128.49407499999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SW Wall (M.SE19.E99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (M.SE19.E100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "33.011025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "33.011025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (M.SE19.E101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.423025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.423025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (M.SE19.E102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "49.89755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "49.89755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.SE19.E103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.102275000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.102275000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (M.NE20.E104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "85.778175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "85.778175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NW Wall (M.NE20.E105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (M.NE20.E106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.74425000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.74425000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.NE20.E107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "83.528225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "83.528225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.NE20.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.NE20.E109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.270425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.270425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (M.NE20.E110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.NW22.E111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.NW22.E112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "97.20727500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "97.20727500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "78.531075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "78.531075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "38.5186", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "38.5186", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW24.E120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.179925000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.179925000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW24.E121)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "51.495125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "51.495125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.807325000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.807325000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE30.E138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.031375000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.031375000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (M.ENE30.E140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.3995999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.3995999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "268.898775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "268.898775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (M.ENE30.E142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.0299000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.0299000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (M.ENE30.E143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "29.733425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "29.733425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.ENE30.E144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.201525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.201525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "43.372099999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "43.372099999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW31.E146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.397950000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.397950000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E147)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.1935", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.1935", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (M.WSW31.E148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.732625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.732625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "82.08917500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "82.08917500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW31.E150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.338199999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.338199999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (M.WSW31.E152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW31.E153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.8252", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.8252", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "69.267775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.267775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E160)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "68.977075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "68.977075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E161)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E162)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E163)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E164)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "58.49912500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "58.49912500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.E165)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E166)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E167)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "92.12129999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "92.12129999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.E168)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E169)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "68.53975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "68.53975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.N32.E170)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.N32.I237)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.N32.I238)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.N32.I239)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.SSE33.E171)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.152825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.152825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.SSE33.E172)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.1251", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.1251", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.SSE33.E173)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.SSE33.E174)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.432575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.432575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.SSE33.I245)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.SSE33.I246)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.S34.E175)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.201", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.201", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E176)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "63.2638", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "63.2638", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.S34.E177)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E178)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.145550000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.S34.E179)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E180)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "98.43977500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "98.43977500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.S34.E181)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.8743500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.8743500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.S34.E182)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.90865000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.90865000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.E183)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.844175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.844175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E184)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.18472500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.18472500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE35.E185)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.735850000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.735850000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E186)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "24.261125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE35.E187)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.9445", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE35.E188)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "128.49407499999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "128.49407499999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SW Wall (T.SE36.E191)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (T.SE36.E192)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "33.011025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "33.011025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (T.SE36.E193)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.423025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.423025", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (T.SE36.E194)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "49.89755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "49.89755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.SE36.E195)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.102275000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.102275000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (T.NE37.E197)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "85.778175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "85.778175", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NW Wall (T.NE37.E198)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (T.NE37.E199)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.74425000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.74425000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.NE37.E200)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "83.528225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "83.528225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.NE37.E201)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.NE37.E202)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.270425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.270425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (T.NE37.E203)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.8249", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.NW39.E206)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.015675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.015675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.NW39.E207)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "97.20727500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "97.20727500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E215)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E216)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW41.E217)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW41.E218)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "51.495125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "51.495125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E240)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.807325000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.807325000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE47.E241)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E242)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.031375000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.031375000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (T.ENE47.E243)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.3995999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.3995999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E244)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "268.898775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "268.898775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (T.ENE47.E245)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.0299000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.0299000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3ENE Wall (T.ENE47.E246)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "29.733425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "29.733425", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.ENE47.E247)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.201525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.201525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E249)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "55.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "55.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW48.E250)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.397950000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.397950000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E251)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.1935", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.1935", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (T.WSW48.E252)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.732625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.732625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E253)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW48.E254)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.338199999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.338199999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E255)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "39.03455", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SSE Wall (T.WSW48.E256)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.136575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW48.E257)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.8252", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.8252", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E260)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E261)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "85.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "85.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E262)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.431150000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E263)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.06655", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E264)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.657625000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E265)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "68.977075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "68.977075", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E266)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E267)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E268)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E269)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.E270)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E271)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E272)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "92.12129999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "92.12129999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.E273)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E274)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "85.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "85.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.N49.E275)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.066975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.N49.I348)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.N49.I349)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.N49.I350)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.SSE50.E277)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.152825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.152825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.SSE50.E278)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.1251", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.1251", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.SSE50.E279)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.959325", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.SSE50.E280)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.432575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.432575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.SSE50.I355)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.SSE50.I356)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.S51.E282)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.201", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.201", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E283)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.S51.E284)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.396675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E285)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "30.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.S51.E286)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.936875", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E287)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.S51.E288)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.8743500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.8743500000000015", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.S51.E289)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.90865000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.90865000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.631750000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.631750000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NNW Wall (G.SSW1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSW1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "140.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "140.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "60.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (G.SE2.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.096925000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.096925000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.SE2.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.SE2.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.SE2.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW5.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (G.NNW5.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW5.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (G.NNW5.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (G.NNW5.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.116375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.116375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "55.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "55.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.SSE6.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (G.SSE6.E50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.274", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.274", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (G.SSE6.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSW7.E52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSW7.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSW7.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.631750000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.631750000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NNW Wall (M.SSW7.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSW7.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "135.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "135.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "60.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (M.SE8.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.096925000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.096925000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.SE8.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.SE8.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.SE8.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.221575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.221575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW11.E83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.012350000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.012350000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (M.NNW11.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW11.E87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (M.NNW11.E89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (M.NNW11.E90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.116375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.116375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.E95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.555324999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.555324999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.SSE12.E99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "90.26532500000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "90.26532500000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (M.SSE12.E101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (M.SSE12.E102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.175125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.175125", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSW13.E103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSW13.E104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSW13.E105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.631750000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.631750000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NNW Wall (T.SSW13.E106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSW13.E107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "120.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "120.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.E109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.514825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.E111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.17945", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.E113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.610775", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E114)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.E115)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "150.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "150.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E117)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "60.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "60.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SE Wall (T.SE14.E118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.096925000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.096925000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.SE14.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.SE14.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.SE14.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.221575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.221575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW17.E138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NE Wall (T.NNW17.E140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW17.E142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SW Wall (T.NNW17.E144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NW Wall (T.NNW17.E145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.227575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.E151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.6911000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "55.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "55.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.4080749999999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E154)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.SSE18.E155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.282324999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "110.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2ENE Wall (T.SSE18.E157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.3328999999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2SSE Wall (T.SSE18.E158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "BSE Wall (B.NNW4.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SE Wall (G.E1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NE Wall (G.E1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.585375000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.585375000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SE Wall (G.E1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "50.00295", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.00295", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "127.50000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "127.50000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NNW Wall (G.E1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.165925", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.165925", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "24.296825000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "24.296825000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SSE Wall (G.E1.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.8161499999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.8161499999999995", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "150.9795", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "150.9795", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NNW Wall (G.E1.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.477824999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.477824999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1ENE Wall (G.E1.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "37.92445000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "37.92445000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SE Wall (G.N2.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "17.106675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "17.106675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NE Wall (G.N2.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "144.47326002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "144.47326002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NW Wall (G.N2.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8152000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1NE Wall (G.N2.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.731925", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.731925", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "100.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1WNW Wall (G.N2.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.786875000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.786875000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "43.54226001999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "43.54226001999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "69.122", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.122", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.60285", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.60285", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "27.357675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "27.357675", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.7881", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.7881", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "69.12242499999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "69.12242499999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "8.267525000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "43.54226001999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "43.54226001999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.918575000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "58.49912500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "58.49912500000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.8717249999999996", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "168.54226002000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "168.54226002000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.N2.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1.0442250000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1.0442250000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.N2.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "91.82295", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "91.82295", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.N2.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "70.92314999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "70.92314999999999", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W15": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1East Wall (G.WSW14.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.SSW18.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.SSW18.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 622": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 623": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W16": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W17": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W18": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W19": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.SSW6.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "19.840700000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "19.840700000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "4.814825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "4.814825", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.SSW6.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.E75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.220150000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.220150000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "105.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "105.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W13": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2South Wall (G.WSW17.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.WSW17.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SSE Wall (G.WSW17.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2WSW Wall (G.WSW17.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NE Wall (G.WSW17.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2SE Wall (G.WSW17.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2East Wall (G.WSW17.I101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "40.221575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "40.221575", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "5.83355", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "35.012350000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "35.012350000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NE Wall (G.NNW3.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "13.475475", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "200.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "16.531650000000003", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.604775000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SW Wall (G.NNW3.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.803", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NW Wall (G.NNW3.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.116375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.116375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.S6.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "20.168375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "20.168375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "156.48755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "156.48755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.S6.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (G.S6.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.244300000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.244300000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.89225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.89225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (G.WSW10.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "88.13905000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "88.13905000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W12": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (G.WSW10.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (G.WSW10.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (G.WSW10.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (G.WSW10.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (G.WSW10.I93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.S23.E113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "20.168375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "20.168375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.E114)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "156.48755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "156.48755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.S23.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (M.S23.I170)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.E124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.244300000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.244300000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.E125)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.89225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.89225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (M.WSW27.E126)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "88.13905000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "88.13905000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W11": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (M.WSW27.I183)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (M.WSW27.I184)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (M.WSW27.I188)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (M.WSW27.I189)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (M.WSW27.I218)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.S40.E209)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "20.168375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "20.168375", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.E210)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "156.48755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "156.48755", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.S40.I266)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3North Wall (T.S40.I290)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.E224)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.244300000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.244300000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.E225)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "7.89225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "7.89225", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3WSW Wall (T.WSW44.E226)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "105.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "105.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3South Wall (T.WSW44.I299)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3West Wall (T.WSW44.I300)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NE Wall (T.WSW44.I304)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3SE Wall (T.WSW44.I305)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3East Wall (T.WSW44.I334)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.NNW4.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NNW Wall (G.NNW4.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (G.NNW4.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W25": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.NNW10.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NNW Wall (M.NNW10.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (M.NNW10.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W21": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.NNW16.E131)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2NNW Wall (T.NNW16.E132)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3-2WSW Wall (T.NNW16.E133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W22": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "ENTRWest Wall (G.W1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "85.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "85.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "ENTRSouth Wall (G.W1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "30.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "30.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "ENTRNorth Wall (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "43.540200000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "43.540200000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SE Wall (G.WSW15.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SE Wall (G.WSW15.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 705": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "BSE Wall (B.ENE3.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "BSW Wall (B.ENE3.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "BNW Wall (B.ENE3.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "BNE Wall (B.SE7.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW4.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "18.515124999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "18.515124999999998", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1South Wall (G.WSW4.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "3.0761500000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "3.0761500000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1SW Wall (G.WSW4.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "1.6328500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "1.6328500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.W6.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.SSW8.E41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "COMPWest Wall (G.W1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "COMPSouth Wall (G.W1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.W3.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2.810525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2.810525", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.W3.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "31.740275000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "31.740275000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1North Wall (G.SW9.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 706": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Exterior Wall 707": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L1West Wall (G.WSW10.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2NNW Wall (G.SW9.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2West Wall (G.W14.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "34.220150000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "34.220150000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (G.SW11.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (M.SW28.E131)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W24": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L3NNW Wall (T.SW45.E232)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W23": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "Pkg Grg W8": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "MECHNorth Wall (G.W1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "MECHWest Wall (G.W1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "MECHSouth Wall (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "MECHEast Wall (G.W1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "POOLNorth Wall (G.W1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "POOLWSW Wall (G.W1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "POOLSouth Wall (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "POOLEast Wall (G.W1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSW4.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "62.79205", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "62.79205", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2ENE Wall (G.SSW4.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "6.496975", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSW4.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "25.360600000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.360600000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2NNW Wall (G.SSW4.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + }, + "L2-2WSW Wall (G.SSW4.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "23887.675615080036", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "23887.675615080036", + "unit": "ft2" + } + ], + "messages": "" + } + }, + "5-17": { + "Units B105-B113 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit B-114 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units B101-B104 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 135 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 129-134 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby/Leasing/Amenities 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 111-113 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 104 - 115 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 114-120 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 128 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units B105 - 128 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 201 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 202-208 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 210-211 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 213-217 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 218 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 247-248 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 212-216 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 241-246 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 205-209 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 203 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 220-229 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 231-239 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 313-317 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 318 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 310-311 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 350 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 347-348 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 342-346 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 312-316 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 308-349 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 303 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 305-309 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 413-417 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 418 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 410-411 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 450 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 447-448 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 442-446 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 412-416 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 408-449 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 403 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 404-409 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 513-517 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 518 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 510-511 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 550 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 547-548 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 542-546 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 512-516 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 508-549 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 503 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 504-509 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 340 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 320-330 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 319-327 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 331-339 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 440 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 420-430 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 419-427 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 431-439 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 540 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 520-530 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 519-527 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 531-539 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby/Leasing/Amenities zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 219-227 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entrance zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 - Storage 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elev 1-2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elev 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Elev 1-2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Shaft zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Elev 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Elev 1-2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Elev 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Elev 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Elev 1-2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Elev 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Elev 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Elev 1-2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Elev 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Elev 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-18": { + "L1West Win (G.W5.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.W5.E39.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.ENE13.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E49.W1) missing:dynamic_glazing_type" + } + }, + "L1SSE Win (G.ENE13.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.ENE13.E50.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.ENE13.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E51.W1) missing:dynamic_glazing_type" + } + }, + "L1SSE Win (G.ENE13.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.ENE13.E52.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.ENE13.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E53.W1) missing:dynamic_glazing_type" + } + }, + "L1NNW Win (G.ENE13.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.ENE13.E54.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.ENE13.E55.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E55.W1) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.ENE13.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.ENE13.E56.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E60.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.S19.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E61.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E62.W1) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.S19.E63.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.S19.E63.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E64.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.S19.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E65.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E66.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.S19.E67.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E67.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E68.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E68.W1) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.S19.E69.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.S19.E69.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E70.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E70.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.S19.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E71.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E72.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E72.W1) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.S19.E73.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.S19.E73.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E74.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E74.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.S19.E75.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E75.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.S19.E76.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E76.W1) missing:dynamic_glazing_type" + } + }, + "L1WSW Win (G.WSW20.E77.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E77.W1) missing:dynamic_glazing_type" + } + }, + "L1NNW Win (G.WSW20.E78.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.WSW20.E78.W1) missing:dynamic_glazing_type" + } + }, + "L1WSW Win (G.WSW20.E79.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E79.W1) missing:dynamic_glazing_type" + } + }, + "L1NNW Win (G.WSW20.E80.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.WSW20.E80.W1) missing:dynamic_glazing_type" + } + }, + "L1WSW Win (G.WSW20.E81.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E81.W1) missing:dynamic_glazing_type" + } + }, + "L1SSE Win (G.WSW20.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.WSW20.E82.W1) missing:dynamic_glazing_type" + } + }, + "L1WSW Win (G.WSW20.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E83.W1) missing:dynamic_glazing_type" + } + }, + "L1SSE Win (G.WSW20.E84.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.WSW20.E84.W1) missing:dynamic_glazing_type" + } + }, + "L1WSW Win (G.WSW20.E85.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E85.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SE Win (G.SE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E1.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SW Win (G.SE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.SE1.E2.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SE Win (G.SE1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E3.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NE Win (G.SE1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.SE1.E4.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SE Win (G.SE1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E5.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NE Win (G.SE1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.SE1.E6.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SE Win (G.SE1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E7.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SW Win (G.SE1.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.SE1.E8.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SE Win (G.SE1.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E9.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NW Win (G.NW3.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E17.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NE Win (G.NW3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.NW3.E18.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NW Win (G.NW3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E19.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NE Win (G.NW3.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.NW3.E20.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NW Win (G.NW3.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E21.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SW Win (G.NW3.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.NW3.E22.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NW Win (G.NW3.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E23.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SW Win (G.NW3.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.NW3.E24.W1) missing:dynamic_glazing_type" + } + }, + "L1-2NW Win (G.NW3.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E25.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SSE Win (G.SSW5.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSW5.E26.W1) missing:dynamic_glazing_type" + } + }, + "L1-2ENE Win (G.SSW5.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2ENE Win (G.SSW5.E27.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SSE Win (G.SSW5.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSW5.E28.W1) missing:dynamic_glazing_type" + } + }, + "L1-2WSW Win (G.SSW5.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSW5.E30.W1) missing:dynamic_glazing_type" + } + }, + "L1-2WSW Win (G.SSE6.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E31.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SSE Win (G.SSE6.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E32.W1) missing:dynamic_glazing_type" + } + }, + "L1-2ENE Win (G.SSE6.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2ENE Win (G.SSE6.E33.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SSE Win (G.SSE6.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E34.W1) missing:dynamic_glazing_type" + } + }, + "L1-2WSW Win (G.SSE6.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E35.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SSE Win (G.SSE6.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E36.W1) missing:dynamic_glazing_type" + } + }, + "L1-2WSW Win (G.SSE6.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E37.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SSE Win (G.SSE6.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E38.W1) missing:dynamic_glazing_type" + } + }, + "L1-2ENE Win (G.SSE6.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2ENE Win (G.SSE6.E39.W1) missing:dynamic_glazing_type" + } + }, + "L1-2SSE Win (G.SSE6.E40.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E40.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.NNE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.NNE1.E1.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.NNE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.NNE1.E2.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E3.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.N2.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.N2.E4.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E5.W1) missing:dynamic_glazing_type" + } + }, + "L2East Win (G.N2.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E6.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E7.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.N2.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.N2.E8.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E9.W1) missing:dynamic_glazing_type" + } + }, + "L2East Win (G.N2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E10.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E11.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.N2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.N2.E12.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E13.W1) missing:dynamic_glazing_type" + } + }, + "L2East Win (G.N2.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E14.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E15.W1) missing:dynamic_glazing_type" + } + }, + "L2East Win (G.N2.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E16.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.N2.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E17.W1) missing:dynamic_glazing_type" + } + }, + "L2NNW Win (G.NE3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.NE3.E18.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.NE3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.NE3.E19.W1) missing:dynamic_glazing_type" + } + }, + "L2SE Win (G.NE3.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SE Win (G.NE3.E20.W1) missing:dynamic_glazing_type" + } + }, + "L2NE Win (G.NE3.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NE Win (G.NE3.E21.W1) missing:dynamic_glazing_type" + } + }, + "L2NW Win (G.NE3.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NW Win (G.NE3.E22.W1) missing:dynamic_glazing_type" + } + }, + "L2NE Win (G.NE3.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NE Win (G.NE3.E23.W1) missing:dynamic_glazing_type" + } + }, + "L2North Win (G.NE3.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.NE3.E24.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.NE3.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.NE3.E25.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.ENE4.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE4.E26.W1) missing:dynamic_glazing_type" + } + }, + "L2NNW Win (G.ENE4.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.ENE4.E27.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.ENE4.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE4.E28.W1) missing:dynamic_glazing_type" + } + }, + "L2SSE Win (G.ENE4.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.ENE4.E29.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.ENE4.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE4.E30.W1) missing:dynamic_glazing_type" + } + }, + "L2SE Win (G.SE5.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SE Win (G.SE5.E34.W1) missing:dynamic_glazing_type" + } + }, + "L2NE Win (G.SE5.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NE Win (G.SE5.E35.W1) missing:dynamic_glazing_type" + } + }, + "L2SE Win (G.SE5.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SE Win (G.SE5.E36.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.SE5.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.SE5.E37.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.WSW8.E40.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW8.E40.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.WSW8.E41.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW8.E41.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.WSW8.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.WSW8.E42.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.WSW8.E43.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW8.E43.W1) missing:dynamic_glazing_type" + } + }, + "L2WSW Win (G.WSW12.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E48.W1) missing:dynamic_glazing_type" + } + }, + "L2NNW Win (G.WSW12.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.WSW12.E49.W1) missing:dynamic_glazing_type" + } + }, + "L2WSW Win (G.WSW12.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E50.W1) missing:dynamic_glazing_type" + } + }, + "L2NNW Win (G.WSW12.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.WSW12.E51.W1) missing:dynamic_glazing_type" + } + }, + "L2WSW Win (G.WSW12.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E52.W1) missing:dynamic_glazing_type" + } + }, + "L2SSE Win (G.WSW12.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.WSW12.E53.W1) missing:dynamic_glazing_type" + } + }, + "L2WSW Win (G.WSW12.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E54.W1) missing:dynamic_glazing_type" + } + }, + "L2SSE Win (G.WSW12.E55.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.WSW12.E55.W1) missing:dynamic_glazing_type" + } + }, + "L2WSW Win (G.WSW12.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E56.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.ENE13.E57.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E57.W1) missing:dynamic_glazing_type" + } + }, + "L2SSE Win (G.ENE13.E58.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.ENE13.E58.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.ENE13.E59.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E59.W1) missing:dynamic_glazing_type" + } + }, + "L2SSE Win (G.ENE13.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.ENE13.E60.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.ENE13.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E61.W1) missing:dynamic_glazing_type" + } + }, + "L2NNW Win (G.ENE13.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.ENE13.E62.W1) missing:dynamic_glazing_type" + } + }, + "L2ENE Win (G.ENE13.E63.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E63.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.S15.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.S15.E65.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.S15.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E66.W1) missing:dynamic_glazing_type" + } + }, + "L2East Win (G.S15.E67.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.S15.E67.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.S15.E68.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E68.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.S15.E69.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.S15.E69.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.S15.E70.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E70.W1) missing:dynamic_glazing_type" + } + }, + "L2East Win (G.S15.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.S15.E71.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.S15.E72.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E72.W1) missing:dynamic_glazing_type" + } + }, + "L2East Win (G.SSE18.E78.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.SSE18.E78.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.SSE18.E79.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.SSE18.E79.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.SSE18.E80.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.SSE18.E80.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.SSE18.E81.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.SSE18.E81.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SE Win (G.SE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E1.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SW Win (G.SE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.SE1.E2.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SE Win (G.SE1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E3.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NE Win (G.SE1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.SE1.E4.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SE Win (G.SE1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E5.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NE Win (G.SE1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.SE1.E6.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SE Win (G.SE1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E7.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SW Win (G.SE1.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.SE1.E8.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SE Win (G.SE1.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E9.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SE Win (G.SE1.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E10.W1) missing:dynamic_glazing_type" + } + }, + "L2-2WSW Win (G.SSE5.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E25.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SSE Win (G.SSE5.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E26.W1) missing:dynamic_glazing_type" + } + }, + "L2-2ENE Win (G.SSE5.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2ENE Win (G.SSE5.E27.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SSE Win (G.SSE5.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E28.W1) missing:dynamic_glazing_type" + } + }, + "L2-2WSW Win (G.SSE5.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E29.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SSE Win (G.SSE5.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E30.W1) missing:dynamic_glazing_type" + } + }, + "L2-2WSW Win (G.SSE5.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E31.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SSE Win (G.SSE5.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E32.W1) missing:dynamic_glazing_type" + } + }, + "L2-2ENE Win (G.SSE5.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2ENE Win (G.SSE5.E33.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SSE Win (G.SSE5.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E34.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (G.ENE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.ENE1.E1.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.ENE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE1.E2.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (G.ENE1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.ENE1.E3.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.ENE1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE1.E4.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (G.ENE1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.ENE1.E5.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.ENE1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE1.E6.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (G.SE2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (G.SE2.E9.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (G.SE2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (G.SE2.E10.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (G.SE2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (G.SE2.E11.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.SE2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.SE2.E12.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (G.NE3.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (G.NE3.E13.W1) missing:dynamic_glazing_type" + } + }, + "L3NW Win (G.NE3.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NW Win (G.NE3.E14.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (G.NE3.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (G.NE3.E15.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.NE3.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.NE3.E16.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.NE3.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.NE3.E17.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.NE3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.NE3.E18.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (G.NE3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (G.NE3.E19.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.NW5.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.NW5.E20.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.NW5.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.NW5.E21.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.WSW7.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW7.E27.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.WSW7.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW7.E28.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.WSW7.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW7.E29.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.WSW7.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.WSW7.E30.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.ENE13.E46.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E46.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (G.ENE13.E47.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.ENE13.E47.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.ENE13.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E48.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (G.ENE13.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.ENE13.E49.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.ENE13.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E50.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (G.ENE13.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.ENE13.E51.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (G.ENE13.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E52.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.ENE13.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.ENE13.E53.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (G.WSW14.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E54.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (G.WSW14.E55.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.WSW14.E55.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (G.WSW14.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E56.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (G.WSW14.E57.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.WSW14.E57.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (G.WSW14.E58.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E58.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (G.WSW14.E59.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.WSW14.E59.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (G.WSW14.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E60.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (G.WSW14.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.WSW14.E61.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (G.WSW14.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E62.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (G.N15.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E64.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E65.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.N15.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.N15.E66.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E67.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E67.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (G.N15.E68.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E68.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E69.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E69.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.N15.E70.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.N15.E70.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E71.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (G.N15.E72.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E72.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E73.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E73.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (G.N15.E74.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E74.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E75.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E75.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E76.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E76.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.N15.E77.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.N15.E77.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E78.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E78.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (G.N15.E79.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E79.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (G.SSE16.E80.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.SSE16.E80.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.SSE16.E81.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.SSE16.E81.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.SSE16.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.SSE16.E82.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.SSE16.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.SSE16.E83.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.S17.E84.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.S17.E84.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.S17.E85.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E85.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (G.S17.E86.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.S17.E86.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.S17.E87.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E87.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.S17.E88.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.S17.E88.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.S17.E89.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E89.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (G.S17.E90.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.S17.E90.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.S17.E91.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E91.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (M.ENE18.E92.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.ENE18.E92.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.ENE18.E93.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE18.E93.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (M.ENE18.E94.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.ENE18.E94.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.ENE18.E95.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE18.E95.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (M.ENE18.E96.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.ENE18.E96.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.ENE18.E97.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE18.E97.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (M.SE19.E100.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (M.SE19.E100.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (M.SE19.E101.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (M.SE19.E101.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (M.SE19.E102.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (M.SE19.E102.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.SE19.E103.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.SE19.E103.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (M.NE20.E104.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (M.NE20.E104.W1) missing:dynamic_glazing_type" + } + }, + "L3NW Win (M.NE20.E105.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NW Win (M.NE20.E105.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (M.NE20.E106.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (M.NE20.E106.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.NE20.E107.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.NE20.E107.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.NE20.E108.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.NE20.E108.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.NE20.E109.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.NE20.E109.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (M.NE20.E110.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (M.NE20.E110.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.NW22.E111.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.NW22.E111.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.NW22.E112.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.NW22.E112.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.WSW24.E118.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW24.E118.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.WSW24.E119.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW24.E119.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.WSW24.E120.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW24.E120.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.WSW24.E121.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.WSW24.E121.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.ENE30.E137.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E137.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (M.ENE30.E138.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.ENE30.E138.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.ENE30.E139.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E139.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (M.ENE30.E140.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.ENE30.E140.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.ENE30.E141.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E141.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (M.ENE30.E142.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.ENE30.E142.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (M.ENE30.E143.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E143.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.ENE30.E144.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.ENE30.E144.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (M.WSW31.E145.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E145.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (M.WSW31.E146.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.WSW31.E146.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (M.WSW31.E147.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E147.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (M.WSW31.E148.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.WSW31.E148.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (M.WSW31.E149.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E149.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (M.WSW31.E150.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.WSW31.E150.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (M.WSW31.E151.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E151.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (M.WSW31.E152.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.WSW31.E152.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (M.WSW31.E153.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E153.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (M.N32.E155.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E155.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E156.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E156.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.N32.E157.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.N32.E157.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E158.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E158.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (M.N32.E159.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E159.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E160.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E160.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.N32.E161.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.N32.E161.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E162.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E162.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (M.N32.E163.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E163.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E164.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E164.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (M.N32.E165.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E165.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E166.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E166.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E167.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E167.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.N32.E168.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.N32.E168.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E169.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E169.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (M.N32.E170.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E170.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (M.SSE33.E171.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.SSE33.E171.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.SSE33.E172.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.SSE33.E172.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.SSE33.E173.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.SSE33.E173.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.SSE33.E174.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.SSE33.E174.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.S34.E175.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.S34.E175.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.S34.E176.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E176.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (M.S34.E177.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.S34.E177.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.S34.E178.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E178.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.S34.E179.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.S34.E179.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.S34.E180.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E180.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (M.S34.E181.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.S34.E181.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.S34.E182.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E182.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (T.ENE35.E183.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.ENE35.E183.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.ENE35.E184.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE35.E184.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (T.ENE35.E185.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.ENE35.E185.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.ENE35.E186.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE35.E186.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (T.ENE35.E187.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.ENE35.E187.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.ENE35.E188.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE35.E188.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (T.SE36.E192.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (T.SE36.E192.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (T.SE36.E193.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (T.SE36.E193.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (T.SE36.E194.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (T.SE36.E194.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.SE36.E195.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.SE36.E195.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (T.NE37.E197.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (T.NE37.E197.W1) missing:dynamic_glazing_type" + } + }, + "L3NW Win (T.NE37.E198.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NW Win (T.NE37.E198.W1) missing:dynamic_glazing_type" + } + }, + "L3NE Win (T.NE37.E199.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (T.NE37.E199.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.NE37.E200.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.NE37.E200.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.NE37.E201.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.NE37.E201.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.NE37.E202.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.NE37.E202.W1) missing:dynamic_glazing_type" + } + }, + "L3SE Win (T.NE37.E203.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (T.NE37.E203.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.NW39.E206.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.NW39.E206.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.NW39.E207.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.NW39.E207.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.WSW41.E215.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW41.E215.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.WSW41.E216.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW41.E216.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.WSW41.E217.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW41.E217.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.WSW41.E218.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.WSW41.E218.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.ENE47.E240.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E240.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (T.ENE47.E241.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.ENE47.E241.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.ENE47.E242.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E242.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (T.ENE47.E243.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.ENE47.E243.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.ENE47.E244.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E244.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (T.ENE47.E245.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.ENE47.E245.W1) missing:dynamic_glazing_type" + } + }, + "L3ENE Win (T.ENE47.E246.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E246.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.ENE47.E247.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.ENE47.E247.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (T.WSW48.E249.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E249.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (T.WSW48.E250.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.WSW48.E250.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (T.WSW48.E251.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E251.W1) missing:dynamic_glazing_type" + } + }, + "L3NNW Win (T.WSW48.E252.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.WSW48.E252.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (T.WSW48.E253.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E253.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (T.WSW48.E254.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.WSW48.E254.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (T.WSW48.E255.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E255.W1) missing:dynamic_glazing_type" + } + }, + "L3SSE Win (T.WSW48.E256.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.WSW48.E256.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (T.WSW48.E257.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E257.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (T.N49.E260.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E260.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E261.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E261.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.N49.E262.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.N49.E262.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E263.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E263.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (T.N49.E264.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E264.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E265.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E265.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.N49.E266.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.N49.E266.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E267.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E267.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (T.N49.E268.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E268.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E269.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E269.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (T.N49.E270.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E270.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E271.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E271.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E272.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E272.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.N49.E273.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.N49.E273.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E274.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E274.W1) missing:dynamic_glazing_type" + } + }, + "L3North Win (T.N49.E275.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E275.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (T.SSE50.E277.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.SSE50.E277.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.SSE50.E278.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.SSE50.E278.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.SSE50.E279.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.SSE50.E279.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.SSE50.E280.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.SSE50.E280.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.S51.E282.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.S51.E282.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.S51.E283.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E283.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (T.S51.E284.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.S51.E284.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.S51.E285.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E285.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.S51.E286.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.S51.E286.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.S51.E287.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E287.W1) missing:dynamic_glazing_type" + } + }, + "L3East Win (T.S51.E288.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.S51.E288.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.S51.E289.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E289.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (G.SSW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (G.SSW1.E2.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (G.SSW1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSW1.E3.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (G.SSW1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSW1.E5.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (G.SE2.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.SE2.E6.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (G.SE2.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E7.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (G.SE2.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.SE2.E8.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (G.SE2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E9.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (G.SE2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.SE2.E10.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (G.SE2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E11.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (G.SE2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.SE2.E12.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (G.SE2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E13.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (G.SE2.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E14.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (G.SE2.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E15.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (G.NNW5.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E31.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (G.NNW5.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.NNW5.E32.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (G.NNW5.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E33.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (G.NNW5.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.NNW5.E34.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (G.NNW5.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E35.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (G.NNW5.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.NNW5.E36.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (G.NNW5.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E37.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (G.NNW5.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.NNW5.E38.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (G.NNW5.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E39.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (G.SSE6.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E42.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (G.SSE6.E43.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E43.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (G.SSE6.E44.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (G.SSE6.E44.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (G.SSE6.E45.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E45.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (G.SSE6.E46.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E46.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (G.SSE6.E47.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E47.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (G.SSE6.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E48.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (G.SSE6.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E49.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (G.SSE6.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (G.SSE6.E50.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (G.SSE6.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E51.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (M.SSW7.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSW7.E52.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (M.SSW7.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (M.SSW7.E53.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (M.SSW7.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSW7.E54.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (M.SSW7.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSW7.E56.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (M.SE8.E57.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.SE8.E57.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (M.SE8.E58.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E58.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (M.SE8.E59.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.SE8.E59.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (M.SE8.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E60.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (M.SE8.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.SE8.E61.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (M.SE8.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E62.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (M.SE8.E63.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.SE8.E63.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (M.SE8.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E64.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (M.SE8.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E65.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (M.SE8.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E66.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (M.NNW11.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E82.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (M.NNW11.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.NNW11.E83.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (M.NNW11.E84.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E84.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (M.NNW11.E85.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.NNW11.E85.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (M.NNW11.E86.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E86.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (M.NNW11.E87.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.NNW11.E87.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (M.NNW11.E88.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E88.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (M.NNW11.E89.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.NNW11.E89.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (M.NNW11.E90.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E90.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (M.SSE12.E93.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E93.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (M.SSE12.E94.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E94.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (M.SSE12.E95.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (M.SSE12.E95.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (M.SSE12.E96.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E96.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (M.SSE12.E97.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E97.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (M.SSE12.E98.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E98.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (M.SSE12.E99.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E99.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (M.SSE12.E100.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E100.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (M.SSE12.E101.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (M.SSE12.E101.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (M.SSE12.E102.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E102.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (T.SSW13.E103.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSW13.E103.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (T.SSW13.E104.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (T.SSW13.E104.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (T.SSW13.E105.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSW13.E105.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (T.SSW13.E107.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSW13.E107.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (T.SE14.E109.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.SE14.E109.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (T.SE14.E110.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E110.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (T.SE14.E111.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.SE14.E111.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (T.SE14.E112.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E112.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (T.SE14.E113.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.SE14.E113.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (T.SE14.E114.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E114.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (T.SE14.E115.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.SE14.E115.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (T.SE14.E116.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E116.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (T.SE14.E117.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E117.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SE Win (T.SE14.E118.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E118.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (T.NNW17.E137.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E137.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (T.NNW17.E138.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.NNW17.E138.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (T.NNW17.E139.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E139.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NE Win (T.NNW17.E140.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.NNW17.E140.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (T.NNW17.E141.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E141.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (T.NNW17.E142.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.NNW17.E142.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (T.NNW17.E143.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E143.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SW Win (T.NNW17.E144.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.NNW17.E144.W1) missing:dynamic_glazing_type" + } + }, + "L3-2NW Win (T.NNW17.E145.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E145.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (T.SSE18.E149.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E149.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (T.SSE18.E150.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E150.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (T.SSE18.E151.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (T.SSE18.E151.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (T.SSE18.E152.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E152.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (T.SSE18.E153.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E153.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (T.SSE18.E154.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E154.W1) missing:dynamic_glazing_type" + } + }, + "L3-2WSW Win (T.SSE18.E155.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E155.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (T.SSE18.E156.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E156.W1) missing:dynamic_glazing_type" + } + }, + "L3-2ENE Win (T.SSE18.E157.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (T.SSE18.E157.W1) missing:dynamic_glazing_type" + } + }, + "L3-2SSE Win (T.SSE18.E158.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E158.W1) missing:dynamic_glazing_type" + } + }, + "L1SE Win (G.E1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SE Win (G.E1.E2.W1) missing:dynamic_glazing_type" + } + }, + "L1NE Win (G.E1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Win (G.E1.E3.W1) missing:dynamic_glazing_type" + } + }, + "L1SE Win (G.E1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SE Win (G.E1.E4.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.E1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E5.W1) missing:dynamic_glazing_type" + } + }, + "L1NNW Win (G.E1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.E1.E6.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.E1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E7.W1) missing:dynamic_glazing_type" + } + }, + "L1SSE Win (G.E1.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.E1.E8.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.E1.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E9.W1) missing:dynamic_glazing_type" + } + }, + "L1NNW Win (G.E1.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.E1.E10.W1) missing:dynamic_glazing_type" + } + }, + "L1ENE Win (G.E1.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E11.W1) missing:dynamic_glazing_type" + } + }, + "L1SE Win (G.N2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SE Win (G.N2.E12.W1) missing:dynamic_glazing_type" + } + }, + "L1NE Win (G.N2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Win (G.N2.E13.W1) missing:dynamic_glazing_type" + } + }, + "L1NE Door (G.N2.E13.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Door (G.N2.E13.D1) missing:dynamic_glazing_type" + } + }, + "L1NE Door (G.N2.E13.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Door (G.N2.E13.D2) missing:dynamic_glazing_type" + } + }, + "L1NW Win (G.N2.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NW Win (G.N2.E14.W1) missing:dynamic_glazing_type" + } + }, + "L1NE Win (G.N2.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Win (G.N2.E15.W1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E16.W1) missing:dynamic_glazing_type" + } + }, + "L1WNW Win (G.N2.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WNW Win (G.N2.E17.W1) missing:dynamic_glazing_type" + } + }, + "L1North Door (G.N2.E18.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E18.D1) missing:dynamic_glazing_type" + } + }, + "L1North Door (G.N2.E18.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E18.D2) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.N2.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E19.W1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E20.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.N2.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.N2.E21.W1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E22.W1) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.N2.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E23.W1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E24.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.N2.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.N2.E25.W1) missing:dynamic_glazing_type" + } + }, + "L1North Door (G.N2.E26.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E26.D1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E26.W1) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.N2.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E27.W1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E28.W1) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.N2.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E29.W1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E30.W1) missing:dynamic_glazing_type" + } + }, + "L1North Door (G.N2.E30.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E30.D1) missing:dynamic_glazing_type" + } + }, + "L1North Door (G.N2.E30.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E30.D2) missing:dynamic_glazing_type" + } + }, + "L1East Win (G.N2.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E31.W1) missing:dynamic_glazing_type" + } + }, + "L1North Win (G.N2.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E32.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.N2.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.N2.E33.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.SSW6.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.SSW6.E38.W1) missing:dynamic_glazing_type" + } + }, + "L2South Win (G.SSW6.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.SSW6.E39.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.WSW17.E75.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW17.E75.W1) missing:dynamic_glazing_type" + } + }, + "L2WSW Win (G.WSW17.E76.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW17.E76.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NW Win (G.NNW3.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E11.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NE Win (G.NNW3.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.NNW3.E12.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NW Win (G.NNW3.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E13.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NE Win (G.NNW3.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.NNW3.E14.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NW Win (G.NNW3.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E15.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SW Win (G.NNW3.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.NNW3.E16.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NW Win (G.NNW3.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E17.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SW Win (G.NNW3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.NNW3.E18.W1) missing:dynamic_glazing_type" + } + }, + "L2-2NW Win (G.NNW3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E19.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.S6.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.S6.E22.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.S6.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S6.E23.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (G.WSW10.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW10.E33.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (G.WSW10.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.WSW10.E34.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (G.WSW10.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW10.E35.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.S23.E113.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.S23.E113.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.S23.E114.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S23.E114.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (M.WSW27.E124.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW27.E124.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (M.WSW27.E125.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.WSW27.E125.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (M.WSW27.E126.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW27.E126.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.S40.E209.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.S40.E209.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.S40.E210.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S40.E210.W1) missing:dynamic_glazing_type" + } + }, + "L3West Win (T.WSW44.E224.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW44.E224.W1) missing:dynamic_glazing_type" + } + }, + "L3South Win (T.WSW44.E225.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.WSW44.E225.W1) missing:dynamic_glazing_type" + } + }, + "L3WSW Win (T.WSW44.E226.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW44.E226.W1) missing:dynamic_glazing_type" + } + }, + "ENTRWest Win (G.W1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRWest Win (G.W1.E1.W1) missing:dynamic_glazing_type" + } + }, + "ENTRSouth Win (G.W1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRSouth Win (G.W1.E2.W1) missing:dynamic_glazing_type" + } + }, + "ENTRNorth Door (G.W1.E3.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRNorth Door (G.W1.E3.D1) missing:dynamic_glazing_type" + } + }, + "ENTRNorth Door (G.W1.E3.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRNorth Door (G.W1.E3.D2) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.W3.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.W3.E34.W1) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.W3.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.W3.E35.W1) missing:dynamic_glazing_type" + } + }, + "L2West Win (G.W14.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.W14.E64.W1) missing:dynamic_glazing_type" + } + }, + "MECHNorth Door (G.W1.E1.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MECHNorth Door (G.W1.E1.D1) missing:dynamic_glazing_type" + } + }, + "POOLEast Door (G.W1.E4.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:POOLEast Door (G.W1.E4.D1) missing:dynamic_glazing_type" + } + }, + "L2-2SSE Win (G.SSW4.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSW4.E20.W1) missing:dynamic_glazing_type" + } + }, + "L2-2ENE Win (G.SSW4.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2ENE Win (G.SSW4.E21.W1) missing:dynamic_glazing_type" + } + }, + "L2-2SSE Win (G.SSW4.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSW4.E22.W1) missing:dynamic_glazing_type" + } + }, + "L2-2WSW Win (G.SSW4.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSW4.E24.W1) missing:dynamic_glazing_type" + } + }, + "COMPSouth Door (G.W1.E2.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D1) missing:dynamic_glazing_type" + } + }, + "COMPSouth Door (G.W1.E2.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D2) missing:dynamic_glazing_type" + } + }, + "L1West Win (G.WSW4.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.WSW4.E36.W1) missing:dynamic_glazing_type" + } + }, + "L1South Win (G.WSW4.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.WSW4.E37.W1) missing:dynamic_glazing_type" + } + }, + "L1SW Win (G.WSW4.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SW Win (G.WSW4.E38.W1) missing:dynamic_glazing_type" + } + } + }, + "5-19": { + "L1West Win (G.W5.E39.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E49.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Win (G.ENE13.E50.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E51.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Win (G.ENE13.E52.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E53.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Win (G.ENE13.E54.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E55.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.ENE13.E56.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E60.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E61.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E62.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E63.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E64.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E65.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E66.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E67.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E68.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E69.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E70.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E71.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E72.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E73.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E74.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E75.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E76.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E77.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Win (G.WSW20.E78.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E79.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Win (G.WSW20.E80.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E81.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Win (G.WSW20.E82.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E83.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Win (G.WSW20.E84.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E85.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Win (G.SE1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Win (G.SE1.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Win (G.SE1.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Win (G.SE1.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Win (G.NW3.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NE Win (G.NW3.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Win (G.NW3.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SW Win (G.NW3.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSW5.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSW5.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSW5.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSW5.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSE6.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E36.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSE6.E39.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E40.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.NNE1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.NNE1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Win (G.NE3.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.NE3.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Win (G.NE3.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Win (G.NE3.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NW Win (G.NE3.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Win (G.NE3.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2North Win (G.NE3.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.NE3.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Win (G.ENE4.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE4.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Win (G.SE5.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NE Win (G.SE5.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SE Win (G.SE5.E36.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.SE5.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E40.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E41.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.WSW8.E42.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E43.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E48.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Win (G.WSW12.E49.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E50.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Win (G.WSW12.E51.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E52.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Win (G.WSW12.E53.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E54.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Win (G.WSW12.E55.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E56.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E57.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE13.E58.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E59.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE13.E60.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E61.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2NNW Win (G.ENE13.E62.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E63.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.S15.E65.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E66.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Win (G.S15.E67.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E68.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.S15.E69.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E70.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Win (G.S15.E71.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E72.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2East Win (G.SSE18.E78.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.SSE18.E79.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.SSE18.E80.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.SSE18.E81.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Win (G.SE1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Win (G.SE1.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Win (G.SE1.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Win (G.SE1.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSE5.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSE5.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE1.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE1.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (G.SE2.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (G.SE2.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (G.SE2.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.SE2.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (G.NE3.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Win (G.NE3.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (G.NE3.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.NE3.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.NE3.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.NE3.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (G.NE3.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.NW5.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.NW5.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.WSW7.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E46.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE13.E47.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E48.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE13.E49.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E50.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE13.E51.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E52.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.ENE13.E53.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E54.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (G.WSW14.E55.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E56.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (G.WSW14.E57.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E58.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (G.WSW14.E59.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E60.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (G.WSW14.E61.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E62.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E64.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E65.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E66.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E67.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E68.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E69.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E70.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E71.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E72.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E73.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E74.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E75.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E76.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E77.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E78.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E79.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (G.SSE16.E80.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.SSE16.E81.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.SSE16.E82.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.SSE16.E83.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.S17.E84.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E85.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (G.S17.E86.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E87.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.S17.E88.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E89.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (G.S17.E90.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E91.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE18.E92.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E93.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE18.E94.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E95.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE18.E96.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E97.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (M.SE19.E100.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (M.SE19.E101.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (M.SE19.E102.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.SE19.E103.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (M.NE20.E104.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Win (M.NE20.E105.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (M.NE20.E106.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.NE20.E107.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.NE20.E108.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.NE20.E109.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (M.NE20.E110.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.NW22.E111.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.NW22.E112.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E118.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E119.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E120.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.WSW24.E121.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E137.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE30.E138.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E139.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE30.E140.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E141.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE30.E142.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E143.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.ENE30.E144.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E145.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (M.WSW31.E146.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E147.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (M.WSW31.E148.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E149.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (M.WSW31.E150.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E151.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (M.WSW31.E152.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E153.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E155.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E156.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E157.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E158.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E159.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E160.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E161.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E162.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E163.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E164.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E165.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E166.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E167.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E168.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E169.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E170.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (M.SSE33.E171.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.SSE33.E172.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.SSE33.E173.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.SSE33.E174.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.S34.E175.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E176.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (M.S34.E177.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E178.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.S34.E179.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E180.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (M.S34.E181.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E182.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE35.E183.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E184.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE35.E185.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E186.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE35.E187.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E188.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (T.SE36.E192.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (T.SE36.E193.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (T.SE36.E194.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.SE36.E195.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (T.NE37.E197.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NW Win (T.NE37.E198.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NE Win (T.NE37.E199.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.NE37.E200.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.NE37.E201.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.NE37.E202.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SE Win (T.NE37.E203.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.NW39.E206.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.NW39.E207.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E215.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E216.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E217.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.WSW41.E218.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E240.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE47.E241.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E242.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE47.E243.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E244.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE47.E245.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E246.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.ENE47.E247.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E249.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (T.WSW48.E250.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E251.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3NNW Win (T.WSW48.E252.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E253.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (T.WSW48.E254.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E255.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3SSE Win (T.WSW48.E256.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E257.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E260.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E261.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E262.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E263.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E264.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E265.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E266.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E267.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E268.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E269.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E270.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E271.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E272.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E273.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E274.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E275.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (T.SSE50.E277.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.SSE50.E278.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.SSE50.E279.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.SSE50.E280.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.S51.E282.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E283.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (T.S51.E284.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E285.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.S51.E286.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E287.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3East Win (T.S51.E288.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E289.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSW1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSW1.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSW1.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (G.SE2.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (G.SE2.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (G.SE2.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (G.SE2.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (G.NNW5.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (G.NNW5.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (G.NNW5.E36.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (G.NNW5.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E39.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E42.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E43.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSE6.E44.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E45.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E46.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E47.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E48.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E49.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSE6.E50.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E51.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSW7.E52.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSW7.E53.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSW7.E54.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSW7.E56.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (M.SE8.E57.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E58.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (M.SE8.E59.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E60.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (M.SE8.E61.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E62.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (M.SE8.E63.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E64.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E65.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E66.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E82.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (M.NNW11.E83.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E84.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (M.NNW11.E85.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E86.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (M.NNW11.E87.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E88.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (M.NNW11.E89.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E90.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E93.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E94.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSE12.E95.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E96.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E97.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E98.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E99.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E100.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSE12.E101.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E102.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSW13.E103.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSW13.E104.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSW13.E105.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSW13.E107.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (T.SE14.E109.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E110.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (T.SE14.E111.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E112.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (T.SE14.E113.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E114.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (T.SE14.E115.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E116.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E117.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E118.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E137.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (T.NNW17.E138.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E139.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NE Win (T.NNW17.E140.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E141.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (T.NNW17.E142.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E143.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SW Win (T.NNW17.E144.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E145.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E149.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E150.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSE18.E151.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E152.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E153.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E154.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E155.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E156.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSE18.E157.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E158.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Win (G.E1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Win (G.E1.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Win (G.E1.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Win (G.E1.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SSE Win (G.E1.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NNW Win (G.E1.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SE Win (G.N2.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Win (G.N2.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Door (G.N2.E13.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.6051259490670197", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Door (G.N2.E13.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.6051259490670197", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NW Win (G.N2.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1NE Win (G.N2.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1WNW Win (G.N2.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E18.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.6051259490670197", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E18.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.6051259490670197", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E26.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.6051259490670197", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44729547401912534", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E30.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.6051259490670197", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E30.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.6051259490670197", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.SSW6.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2South Win (G.SSW6.E39.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.WSW17.E75.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW17.E76.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Win (G.NNW3.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NE Win (G.NNW3.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Win (G.NNW3.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SW Win (G.NNW3.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.S6.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.S6.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (G.WSW10.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (G.WSW10.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW10.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.S23.E113.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.S23.E114.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (M.WSW27.E124.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (M.WSW27.E125.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW27.E126.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.S40.E209.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.S40.E210.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3West Win (T.WSW44.E224.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3South Win (T.WSW44.E225.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW44.E226.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTRWest Win (G.W1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTRSouth Win (G.W1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTRNorth Door (G.W1.E3.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "ENTRNorth Door (G.W1.E3.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.WSW4.E36.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1South Win (G.WSW4.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1SW Win (G.WSW4.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "COMPSouth Wall (G.W1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Win (G.W3.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L1West Win (G.W3.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2West Win (G.W14.E64.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "1.22", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MECHNorth Wall (G.W1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "POOLEast Wall (G.W1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SSE Win (G.SSW4.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSW4.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSW4.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839824", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSW4.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4678797994839823", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-20": { + "L1West Win (G.W5.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1SSE Win (G.ENE13.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1SSE Win (G.ENE13.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1NNW Win (G.ENE13.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E55.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1East Win (G.ENE13.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E60.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E61.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E62.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E63.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E64.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E65.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E66.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E67.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E68.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E69.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E70.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E71.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E72.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E73.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E74.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E75.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E76.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E77.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1NNW Win (G.WSW20.E78.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E79.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1NNW Win (G.WSW20.E80.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E81.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1SSE Win (G.WSW20.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1SSE Win (G.WSW20.E84.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E85.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SW Win (G.SE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NE Win (G.SE1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NE Win (G.SE1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SW Win (G.SE1.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NE Win (G.NW3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NE Win (G.NW3.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SW Win (G.NW3.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SW Win (G.NW3.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSW5.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSW5.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSW5.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSW5.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSE6.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSE6.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E40.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.NNE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.NNE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NNW Win (G.NE3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.NE3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SE Win (G.NE3.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NE Win (G.NE3.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NW Win (G.NE3.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NE Win (G.NE3.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2North Win (G.NE3.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.NE3.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NNW Win (G.ENE4.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE4.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SE Win (G.SE5.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NE Win (G.SE5.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SE Win (G.SE5.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.SE5.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E40.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E41.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2South Win (G.WSW8.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E43.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NNW Win (G.WSW12.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NNW Win (G.WSW12.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SSE Win (G.WSW12.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SSE Win (G.WSW12.E55.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E57.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE13.E58.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E59.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE13.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E61.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2NNW Win (G.ENE13.E62.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E63.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.S15.E65.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2East Win (G.S15.E67.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E68.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.S15.E69.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E70.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2East Win (G.S15.E71.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E72.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2East Win (G.SSE18.E78.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2South Win (G.SSE18.E79.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2West Win (G.SSE18.E80.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2South Win (G.SSE18.E81.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SW Win (G.SE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NE Win (G.SE1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NE Win (G.SE1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SW Win (G.SE1.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSE5.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSE5.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (G.SE2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (G.SE2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (G.SE2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.SE2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (G.NE3.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NW Win (G.NE3.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (G.NE3.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.NE3.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.NE3.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.NE3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (G.NE3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.NW5.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.NW5.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (G.WSW7.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E46.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE13.E47.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE13.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE13.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.ENE13.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (G.WSW14.E55.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (G.WSW14.E57.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E58.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (G.WSW14.E59.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (G.WSW14.E61.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E62.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E64.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E65.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E67.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E68.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E69.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E70.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E71.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E72.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E73.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E74.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E75.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E76.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E77.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E78.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E79.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (G.SSE16.E80.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (G.SSE16.E81.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.SSE16.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (G.SSE16.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.S17.E84.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E85.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (G.S17.E86.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E87.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.S17.E88.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E89.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (G.S17.E90.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E91.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE18.E92.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E93.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE18.E94.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E95.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE18.E96.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E97.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (M.SE19.E100.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (M.SE19.E101.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (M.SE19.E102.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.SE19.E103.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (M.NE20.E104.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NW Win (M.NE20.E105.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (M.NE20.E106.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.NE20.E107.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.NE20.E108.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.NE20.E109.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (M.NE20.E110.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.NW22.E111.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.NW22.E112.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E118.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E119.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E120.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (M.WSW24.E121.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E137.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE30.E138.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E139.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE30.E140.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E141.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE30.E142.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E143.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.ENE30.E144.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E145.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (M.WSW31.E146.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E147.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (M.WSW31.E148.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E149.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (M.WSW31.E150.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E151.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (M.WSW31.E152.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E153.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E155.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E156.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E157.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E158.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E159.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E160.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E161.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E162.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E163.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E164.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E165.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E166.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E167.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E168.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E169.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E170.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (M.SSE33.E171.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (M.SSE33.E172.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.SSE33.E173.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (M.SSE33.E174.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.S34.E175.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E176.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (M.S34.E177.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E178.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (M.S34.E179.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E180.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (M.S34.E181.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E182.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE35.E183.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E184.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE35.E185.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E186.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE35.E187.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E188.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (T.SE36.E192.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (T.SE36.E193.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (T.SE36.E194.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.SE36.E195.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (T.NE37.E197.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NW Win (T.NE37.E198.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NE Win (T.NE37.E199.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.NE37.E200.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.NE37.E201.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.NE37.E202.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SE Win (T.NE37.E203.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.NW39.E206.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.NW39.E207.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E215.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E216.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E217.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (T.WSW41.E218.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E240.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE47.E241.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E242.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE47.E243.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E244.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE47.E245.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E246.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.ENE47.E247.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E249.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (T.WSW48.E250.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E251.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3NNW Win (T.WSW48.E252.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E253.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (T.WSW48.E254.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E255.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3SSE Win (T.WSW48.E256.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E257.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E260.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E261.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E262.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E263.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E264.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E265.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E266.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E267.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E268.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E269.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E270.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E271.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E272.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E273.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E274.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E275.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (T.SSE50.E277.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (T.SSE50.E278.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.SSE50.E279.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (T.SSE50.E280.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.S51.E282.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E283.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (T.S51.E284.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E285.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (T.S51.E286.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E287.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3East Win (T.S51.E288.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E289.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSW1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSW1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (G.SE2.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (G.SE2.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (G.SE2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (G.SE2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (G.NNW5.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (G.NNW5.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (G.NNW5.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (G.NNW5.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E43.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSE6.E44.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E45.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E46.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E47.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSE6.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSW7.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSW7.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSW7.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSW7.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (M.SE8.E57.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E58.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (M.SE8.E59.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (M.SE8.E61.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E62.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (M.SE8.E63.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E64.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E65.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (M.NNW11.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E84.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (M.NNW11.E85.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E86.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (M.NNW11.E87.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E88.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (M.NNW11.E89.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E90.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E93.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E94.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSE12.E95.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E96.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E97.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E98.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E99.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E100.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSE12.E101.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E102.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSW13.E103.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSW13.E104.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSW13.E105.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSW13.E107.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (T.SE14.E109.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E110.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (T.SE14.E111.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E112.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (T.SE14.E113.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E114.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (T.SE14.E115.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E116.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E117.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E118.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E137.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (T.NNW17.E138.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E139.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NE Win (T.NNW17.E140.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E141.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (T.NNW17.E142.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E143.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SW Win (T.NNW17.E144.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E145.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E149.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E150.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSE18.E151.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E152.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E153.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E154.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E155.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E156.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSE18.E157.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E158.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1SE Win (G.E1.E2.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NE Win (G.E1.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1SE Win (G.E1.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NNW Win (G.E1.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1SSE Win (G.E1.E8.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NNW Win (G.E1.E10.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1SE Win (G.N2.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NE Win (G.N2.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NE Door (G.N2.E13.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NE Door (G.N2.E13.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NW Win (G.N2.E14.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1NE Win (G.N2.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E16.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1WNW Win (G.N2.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E18.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E18.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E26.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E27.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E30.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E30.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E30.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L2West Win (G.SSW6.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L2South Win (G.SSW6.E39.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L2West Win (G.WSW17.E75.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW17.E76.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NE Win (G.NNW3.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NE Win (G.NNW3.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SW Win (G.NNW3.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SW Win (G.NNW3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L3West Win (G.S6.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3South Win (G.S6.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3West Win (G.WSW10.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3South Win (G.WSW10.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW10.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3West Win (M.S23.E113.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3South Win (M.S23.E114.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3West Win (M.WSW27.E124.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3South Win (M.WSW27.E125.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW27.E126.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3West Win (T.S40.E209.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3South Win (T.S40.E210.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3West Win (T.WSW44.E224.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3South Win (T.WSW44.E225.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW44.E226.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "ENTRWest Win (G.W1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "ENTRSouth Win (G.W1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "ENTRNorth Door (G.W1.E3.D1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "ENTRNorth Door (G.W1.E3.D2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L1West Win (G.WSW4.E36.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1South Win (G.WSW4.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1SW Win (G.WSW4.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "COMPSouth Wall (G.W1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D1) missing:solar_heat_gain_coefficient; id:COMPSouth Door (G.W1.E2.D2) missing:solar_heat_gain_coefficient" + } + }, + "L1West Win (G.W3.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L1West Win (G.W3.E35.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.49" + } + ], + "messages": "" + }, + "L2West Win (G.W14.E64.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.4" + } + ], + "messages": "" + }, + "MECHNorth Wall (G.W1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:MECHNorth Door (G.W1.E1.D1) missing:solar_heat_gain_coefficient" + } + }, + "POOLEast Wall (G.W1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:POOLEast Door (G.W1.E4.D1) missing:solar_heat_gain_coefficient" + } + }, + "L2-2SSE Win (G.SSW4.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSW4.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSW4.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSW4.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + } + }, + "5-21": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-22": { + "L1West Win (G.W5.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SSE Win (G.ENE13.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SSE Win (G.ENE13.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NNW Win (G.ENE13.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.ENE13.E55.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.ENE13.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E61.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E62.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E63.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E64.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E65.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E67.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E68.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E69.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E70.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E71.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E72.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.S19.E73.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E74.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.S19.E75.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.S19.E76.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E77.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NNW Win (G.WSW20.E78.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E79.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NNW Win (G.WSW20.E80.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E81.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SSE Win (G.WSW20.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SSE Win (G.WSW20.E84.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1WSW Win (G.WSW20.E85.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SW Win (G.SE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NE Win (G.SE1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NE Win (G.SE1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SW Win (G.SE1.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SE Win (G.SE1.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NE Win (G.NW3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NE Win (G.NW3.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SW Win (G.NW3.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SW Win (G.NW3.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2NW Win (G.NW3.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSW5.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSW5.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSW5.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSW5.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSE6.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2WSW Win (G.SSE6.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2ENE Win (G.SSE6.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1-2SSE Win (G.SSE6.E40.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.NNE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.NNE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.N2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2East Win (G.N2.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.N2.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NNW Win (G.NE3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.NE3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SE Win (G.NE3.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NE Win (G.NE3.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NW Win (G.NE3.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NE Win (G.NE3.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2North Win (G.NE3.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.NE3.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NNW Win (G.ENE4.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE4.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE4.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SE Win (G.SE5.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NE Win (G.SE5.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SE Win (G.SE5.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.SE5.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E40.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E41.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.WSW8.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.WSW8.E43.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NNW Win (G.WSW12.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NNW Win (G.WSW12.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SSE Win (G.WSW12.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SSE Win (G.WSW12.E55.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW12.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E57.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE13.E58.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E59.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2SSE Win (G.ENE13.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E61.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2NNW Win (G.ENE13.E62.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2ENE Win (G.ENE13.E63.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.S15.E65.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2East Win (G.S15.E67.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E68.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.S15.E69.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E70.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2East Win (G.S15.E71.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.S15.E72.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2East Win (G.SSE18.E78.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.SSE18.E79.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.SSE18.E80.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.SSE18.E81.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SW Win (G.SE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NE Win (G.SE1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NE Win (G.SE1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SW Win (G.SE1.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SE Win (G.SE1.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSE5.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSE5.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSE5.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSE5.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (G.SE2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (G.SE2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (G.SE2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.SE2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (G.NE3.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NW Win (G.NE3.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (G.NE3.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.NE3.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.NE3.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.NE3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (G.NE3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.NW5.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.NW5.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.WSW7.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.WSW7.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E46.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE13.E47.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (G.ENE13.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (G.ENE13.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (G.ENE13.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.ENE13.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (G.WSW14.E55.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (G.WSW14.E57.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E58.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (G.WSW14.E59.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (G.WSW14.E61.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW14.E62.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E64.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E65.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E67.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E68.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E69.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E70.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E71.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E72.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E73.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (G.N15.E74.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E75.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E76.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.N15.E77.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E78.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (G.N15.E79.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (G.SSE16.E80.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.SSE16.E81.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.SSE16.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.SSE16.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.S17.E84.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E85.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (G.S17.E86.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E87.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.S17.E88.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E89.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (G.S17.E90.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.S17.E91.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE18.E92.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E93.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE18.E94.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E95.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE18.E96.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE18.E97.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (M.SE19.E100.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (M.SE19.E101.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (M.SE19.E102.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.SE19.E103.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (M.NE20.E104.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NW Win (M.NE20.E105.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (M.NE20.E106.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.NE20.E107.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.NE20.E108.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.NE20.E109.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (M.NE20.E110.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.NW22.E111.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.NW22.E112.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E118.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E119.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.WSW24.E120.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.WSW24.E121.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E137.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE30.E138.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E139.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (M.ENE30.E140.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E141.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (M.ENE30.E142.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (M.ENE30.E143.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.ENE30.E144.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E145.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (M.WSW31.E146.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E147.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (M.WSW31.E148.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E149.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (M.WSW31.E150.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E151.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (M.WSW31.E152.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW31.E153.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E155.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E156.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E157.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E158.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E159.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E160.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E161.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E162.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E163.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E164.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (M.N32.E165.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E166.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E167.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.N32.E168.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E169.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (M.N32.E170.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (M.SSE33.E171.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.SSE33.E172.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.SSE33.E173.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.SSE33.E174.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.S34.E175.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E176.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (M.S34.E177.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E178.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.S34.E179.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E180.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (M.S34.E181.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.S34.E182.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE35.E183.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E184.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE35.E185.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E186.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE35.E187.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE35.E188.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (T.SE36.E192.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (T.SE36.E193.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (T.SE36.E194.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.SE36.E195.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (T.NE37.E197.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NW Win (T.NE37.E198.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NE Win (T.NE37.E199.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.NE37.E200.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.NE37.E201.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.NE37.E202.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SE Win (T.NE37.E203.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.NW39.E206.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.NW39.E207.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E215.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E216.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.WSW41.E217.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.WSW41.E218.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E240.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE47.E241.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E242.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (T.ENE47.E243.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E244.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (T.ENE47.E245.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3ENE Win (T.ENE47.E246.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.ENE47.E247.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E249.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (T.WSW48.E250.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E251.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3NNW Win (T.WSW48.E252.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E253.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (T.WSW48.E254.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E255.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3SSE Win (T.WSW48.E256.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW48.E257.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E260.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E261.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E262.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E263.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E264.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E265.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E266.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E267.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E268.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E269.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (T.N49.E270.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E271.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E272.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.N49.E273.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E274.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3North Win (T.N49.E275.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (T.SSE50.E277.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.SSE50.E278.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.SSE50.E279.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.SSE50.E280.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.S51.E282.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E283.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (T.S51.E284.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E285.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.S51.E286.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E287.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3East Win (T.S51.E288.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.S51.E289.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSW1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSW1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSW1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (G.SE2.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (G.SE2.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (G.SE2.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (G.SE2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (G.SE2.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (G.NNW5.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (G.NNW5.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (G.NNW5.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (G.NNW5.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (G.NNW5.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E43.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSE6.E44.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E45.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E46.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E47.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (G.SSE6.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E49.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (G.SSE6.E50.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (G.SSE6.E51.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSW7.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSW7.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSW7.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSW7.E56.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (M.SE8.E57.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E58.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (M.SE8.E59.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (M.SE8.E61.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E62.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (M.SE8.E63.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E64.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E65.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (M.SE8.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (M.NNW11.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E84.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (M.NNW11.E85.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E86.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (M.NNW11.E87.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E88.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (M.NNW11.E89.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (M.NNW11.E90.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E93.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E94.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSE12.E95.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E96.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E97.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E98.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (M.SSE12.E99.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E100.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (M.SSE12.E101.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (M.SSE12.E102.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSW13.E103.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSW13.E104.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSW13.E105.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSW13.E107.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (T.SE14.E109.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E110.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (T.SE14.E111.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E112.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (T.SE14.E113.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E114.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (T.SE14.E115.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E116.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E117.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SE Win (T.SE14.E118.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E137.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (T.NNW17.E138.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E139.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NE Win (T.NNW17.E140.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E141.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (T.NNW17.E142.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E143.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SW Win (T.NNW17.E144.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2NW Win (T.NNW17.E145.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E149.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E150.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSE18.E151.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E152.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E153.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E154.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2WSW Win (T.SSE18.E155.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E156.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2ENE Win (T.SSE18.E157.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3-2SSE Win (T.SSE18.E158.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SE Win (G.E1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NE Win (G.E1.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SE Win (G.E1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NNW Win (G.E1.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SSE Win (G.E1.E8.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NNW Win (G.E1.E10.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1ENE Win (G.E1.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SE Win (G.N2.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NE Win (G.N2.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NE Door (G.N2.E13.D1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NE Door (G.N2.E13.D2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NW Win (G.N2.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1NE Win (G.N2.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1WNW Win (G.N2.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E18.D1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E18.D2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E26.D1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E27.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E30.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E30.D1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Door (G.N2.E30.D2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1East Win (G.N2.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1North Win (G.N2.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.N2.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.SSW6.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2South Win (G.SSW6.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.WSW17.E75.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2WSW Win (G.WSW17.E76.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NE Win (G.NNW3.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NE Win (G.NNW3.E14.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SW Win (G.NNW3.E16.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SW Win (G.NNW3.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2NW Win (G.NNW3.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.S6.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.S6.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (G.WSW10.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (G.WSW10.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (G.WSW10.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.S23.E113.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.S23.E114.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (M.WSW27.E124.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (M.WSW27.E125.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (M.WSW27.E126.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.S40.E209.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.S40.E210.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3West Win (T.WSW44.E224.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3South Win (T.WSW44.E225.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L3WSW Win (T.WSW44.E226.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "ENTRWest Win (G.W1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "ENTRSouth Win (G.W1.E2.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "ENTRNorth Door (G.W1.E3.D1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "ENTRNorth Door (G.W1.E3.D2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.WSW4.E36.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1South Win (G.WSW4.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1SW Win (G.WSW4.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "COMPSouth Door (G.W1.E2.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "COMPSouth Door (G.W1.E2.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D2) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "L1West Win (G.W3.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L1West Win (G.W3.E35.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2West Win (G.W14.E64.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "MECHNorth Door (G.W1.E1.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:MECHNorth Door (G.W1.E1.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "POOLEast Door (G.W1.E4.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:POOLEast Door (G.W1.E4.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "L2-2SSE Win (G.SSW4.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2ENE Win (G.SSW4.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2SSE Win (G.SSW4.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "L2-2WSW Win (G.SSW4.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + } + }, + "5-23": { + "L1West Win (G.W5.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.W5.E39.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.W5.E39.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.ENE13.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E49.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.ENE13.E49.W1) missing:has_manual_interior_shades" + } + }, + "L1SSE Win (G.ENE13.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.ENE13.E50.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SSE Win (G.ENE13.E50.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.ENE13.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E51.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.ENE13.E51.W1) missing:has_manual_interior_shades" + } + }, + "L1SSE Win (G.ENE13.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.ENE13.E52.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SSE Win (G.ENE13.E52.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.ENE13.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E53.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.ENE13.E53.W1) missing:has_manual_interior_shades" + } + }, + "L1NNW Win (G.ENE13.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.ENE13.E54.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NNW Win (G.ENE13.E54.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.ENE13.E55.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.ENE13.E55.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.ENE13.E55.W1) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.ENE13.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.ENE13.E56.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.ENE13.E56.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E60.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E60.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.S19.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E61.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.S19.E61.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E62.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E62.W1) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.S19.E63.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.S19.E63.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.S19.E63.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E64.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E64.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.S19.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E65.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.S19.E65.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E66.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E66.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.S19.E67.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E67.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.S19.E67.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E68.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E68.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E68.W1) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.S19.E69.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.S19.E69.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.S19.E69.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E70.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E70.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E70.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.S19.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E71.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.S19.E71.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E72.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E72.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E72.W1) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.S19.E73.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.S19.E73.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.S19.E73.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E74.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E74.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E74.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.S19.E75.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.S19.E75.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.S19.E75.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.S19.E76.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.S19.E76.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.S19.E76.W1) missing:has_manual_interior_shades" + } + }, + "L1WSW Win (G.WSW20.E77.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E77.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1WSW Win (G.WSW20.E77.W1) missing:has_manual_interior_shades" + } + }, + "L1NNW Win (G.WSW20.E78.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.WSW20.E78.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NNW Win (G.WSW20.E78.W1) missing:has_manual_interior_shades" + } + }, + "L1WSW Win (G.WSW20.E79.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E79.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1WSW Win (G.WSW20.E79.W1) missing:has_manual_interior_shades" + } + }, + "L1NNW Win (G.WSW20.E80.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.WSW20.E80.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NNW Win (G.WSW20.E80.W1) missing:has_manual_interior_shades" + } + }, + "L1WSW Win (G.WSW20.E81.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E81.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1WSW Win (G.WSW20.E81.W1) missing:has_manual_interior_shades" + } + }, + "L1SSE Win (G.WSW20.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.WSW20.E82.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SSE Win (G.WSW20.E82.W1) missing:has_manual_interior_shades" + } + }, + "L1WSW Win (G.WSW20.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E83.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1WSW Win (G.WSW20.E83.W1) missing:has_manual_interior_shades" + } + }, + "L1SSE Win (G.WSW20.E84.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.WSW20.E84.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SSE Win (G.WSW20.E84.W1) missing:has_manual_interior_shades" + } + }, + "L1WSW Win (G.WSW20.E85.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WSW Win (G.WSW20.E85.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1WSW Win (G.WSW20.E85.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SE Win (G.SE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SE Win (G.SE1.E1.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SW Win (G.SE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.SE1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SW Win (G.SE1.E2.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SE Win (G.SE1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SE Win (G.SE1.E3.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NE Win (G.SE1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.SE1.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NE Win (G.SE1.E4.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SE Win (G.SE1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SE Win (G.SE1.E5.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NE Win (G.SE1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.SE1.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NE Win (G.SE1.E6.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SE Win (G.SE1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SE Win (G.SE1.E7.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SW Win (G.SE1.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.SE1.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SW Win (G.SE1.E8.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SE Win (G.SE1.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SE Win (G.SE1.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SE Win (G.SE1.E9.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NW Win (G.NW3.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NW Win (G.NW3.E17.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NE Win (G.NW3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.NW3.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NE Win (G.NW3.E18.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NW Win (G.NW3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NW Win (G.NW3.E19.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NE Win (G.NW3.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NE Win (G.NW3.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NE Win (G.NW3.E20.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NW Win (G.NW3.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NW Win (G.NW3.E21.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SW Win (G.NW3.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.NW3.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SW Win (G.NW3.E22.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NW Win (G.NW3.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NW Win (G.NW3.E23.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SW Win (G.NW3.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SW Win (G.NW3.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SW Win (G.NW3.E24.W1) missing:has_manual_interior_shades" + } + }, + "L1-2NW Win (G.NW3.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2NW Win (G.NW3.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2NW Win (G.NW3.E25.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SSE Win (G.SSW5.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSW5.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SSE Win (G.SSW5.E26.W1) missing:has_manual_interior_shades" + } + }, + "L1-2ENE Win (G.SSW5.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2ENE Win (G.SSW5.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2ENE Win (G.SSW5.E27.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SSE Win (G.SSW5.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSW5.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SSE Win (G.SSW5.E28.W1) missing:has_manual_interior_shades" + } + }, + "L1-2WSW Win (G.SSW5.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSW5.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2WSW Win (G.SSW5.E30.W1) missing:has_manual_interior_shades" + } + }, + "L1-2WSW Win (G.SSE6.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E31.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SSE Win (G.SSE6.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E32.W1) missing:has_manual_interior_shades" + } + }, + "L1-2ENE Win (G.SSE6.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2ENE Win (G.SSE6.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2ENE Win (G.SSE6.E33.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SSE Win (G.SSE6.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E34.W1) missing:has_manual_interior_shades" + } + }, + "L1-2WSW Win (G.SSE6.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E35.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SSE Win (G.SSE6.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E36.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E36.W1) missing:has_manual_interior_shades" + } + }, + "L1-2WSW Win (G.SSE6.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E37.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2WSW Win (G.SSE6.E37.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SSE Win (G.SSE6.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E38.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E38.W1) missing:has_manual_interior_shades" + } + }, + "L1-2ENE Win (G.SSE6.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2ENE Win (G.SSE6.E39.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2ENE Win (G.SSE6.E39.W1) missing:has_manual_interior_shades" + } + }, + "L1-2SSE Win (G.SSE6.E40.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E40.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1-2SSE Win (G.SSE6.E40.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.NNE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.NNE1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.NNE1.E1.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.NNE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.NNE1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.NNE1.E2.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E3.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.N2.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.N2.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.N2.E4.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E5.W1) missing:has_manual_interior_shades" + } + }, + "L2East Win (G.N2.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2East Win (G.N2.E6.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E7.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.N2.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.N2.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.N2.E8.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E9.W1) missing:has_manual_interior_shades" + } + }, + "L2East Win (G.N2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2East Win (G.N2.E10.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E11.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.N2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.N2.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.N2.E12.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E13.W1) missing:has_manual_interior_shades" + } + }, + "L2East Win (G.N2.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2East Win (G.N2.E14.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E15.W1) missing:has_manual_interior_shades" + } + }, + "L2East Win (G.N2.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.N2.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2East Win (G.N2.E16.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.N2.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.N2.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.N2.E17.W1) missing:has_manual_interior_shades" + } + }, + "L2NNW Win (G.NE3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.NE3.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NNW Win (G.NE3.E18.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.NE3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.NE3.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.NE3.E19.W1) missing:has_manual_interior_shades" + } + }, + "L2SE Win (G.NE3.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SE Win (G.NE3.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SE Win (G.NE3.E20.W1) missing:has_manual_interior_shades" + } + }, + "L2NE Win (G.NE3.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NE Win (G.NE3.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NE Win (G.NE3.E21.W1) missing:has_manual_interior_shades" + } + }, + "L2NW Win (G.NE3.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NW Win (G.NE3.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NW Win (G.NE3.E22.W1) missing:has_manual_interior_shades" + } + }, + "L2NE Win (G.NE3.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NE Win (G.NE3.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NE Win (G.NE3.E23.W1) missing:has_manual_interior_shades" + } + }, + "L2North Win (G.NE3.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2North Win (G.NE3.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2North Win (G.NE3.E24.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.NE3.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.NE3.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.NE3.E25.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.ENE4.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE4.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.ENE4.E26.W1) missing:has_manual_interior_shades" + } + }, + "L2NNW Win (G.ENE4.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.ENE4.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NNW Win (G.ENE4.E27.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.ENE4.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE4.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.ENE4.E28.W1) missing:has_manual_interior_shades" + } + }, + "L2SSE Win (G.ENE4.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.ENE4.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SSE Win (G.ENE4.E29.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.ENE4.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE4.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.ENE4.E30.W1) missing:has_manual_interior_shades" + } + }, + "L2SE Win (G.SE5.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SE Win (G.SE5.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SE Win (G.SE5.E34.W1) missing:has_manual_interior_shades" + } + }, + "L2NE Win (G.SE5.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NE Win (G.SE5.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NE Win (G.SE5.E35.W1) missing:has_manual_interior_shades" + } + }, + "L2SE Win (G.SE5.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SE Win (G.SE5.E36.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SE Win (G.SE5.E36.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.SE5.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.SE5.E37.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.SE5.E37.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.WSW8.E40.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW8.E40.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.WSW8.E40.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.WSW8.E41.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW8.E41.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.WSW8.E41.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.WSW8.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.WSW8.E42.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.WSW8.E42.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.WSW8.E43.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW8.E43.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.WSW8.E43.W1) missing:has_manual_interior_shades" + } + }, + "L2WSW Win (G.WSW12.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E48.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2WSW Win (G.WSW12.E48.W1) missing:has_manual_interior_shades" + } + }, + "L2NNW Win (G.WSW12.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.WSW12.E49.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NNW Win (G.WSW12.E49.W1) missing:has_manual_interior_shades" + } + }, + "L2WSW Win (G.WSW12.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E50.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2WSW Win (G.WSW12.E50.W1) missing:has_manual_interior_shades" + } + }, + "L2NNW Win (G.WSW12.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.WSW12.E51.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NNW Win (G.WSW12.E51.W1) missing:has_manual_interior_shades" + } + }, + "L2WSW Win (G.WSW12.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E52.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2WSW Win (G.WSW12.E52.W1) missing:has_manual_interior_shades" + } + }, + "L2SSE Win (G.WSW12.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.WSW12.E53.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SSE Win (G.WSW12.E53.W1) missing:has_manual_interior_shades" + } + }, + "L2WSW Win (G.WSW12.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E54.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2WSW Win (G.WSW12.E54.W1) missing:has_manual_interior_shades" + } + }, + "L2SSE Win (G.WSW12.E55.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.WSW12.E55.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SSE Win (G.WSW12.E55.W1) missing:has_manual_interior_shades" + } + }, + "L2WSW Win (G.WSW12.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW12.E56.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2WSW Win (G.WSW12.E56.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.ENE13.E57.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E57.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.ENE13.E57.W1) missing:has_manual_interior_shades" + } + }, + "L2SSE Win (G.ENE13.E58.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.ENE13.E58.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SSE Win (G.ENE13.E58.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.ENE13.E59.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E59.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.ENE13.E59.W1) missing:has_manual_interior_shades" + } + }, + "L2SSE Win (G.ENE13.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2SSE Win (G.ENE13.E60.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2SSE Win (G.ENE13.E60.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.ENE13.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E61.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.ENE13.E61.W1) missing:has_manual_interior_shades" + } + }, + "L2NNW Win (G.ENE13.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2NNW Win (G.ENE13.E62.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2NNW Win (G.ENE13.E62.W1) missing:has_manual_interior_shades" + } + }, + "L2ENE Win (G.ENE13.E63.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2ENE Win (G.ENE13.E63.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2ENE Win (G.ENE13.E63.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.S15.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.S15.E65.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.S15.E65.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.S15.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E66.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.S15.E66.W1) missing:has_manual_interior_shades" + } + }, + "L2East Win (G.S15.E67.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.S15.E67.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2East Win (G.S15.E67.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.S15.E68.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E68.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.S15.E68.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.S15.E69.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.S15.E69.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.S15.E69.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.S15.E70.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E70.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.S15.E70.W1) missing:has_manual_interior_shades" + } + }, + "L2East Win (G.S15.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.S15.E71.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2East Win (G.S15.E71.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.S15.E72.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.S15.E72.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.S15.E72.W1) missing:has_manual_interior_shades" + } + }, + "L2East Win (G.SSE18.E78.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2East Win (G.SSE18.E78.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2East Win (G.SSE18.E78.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.SSE18.E79.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.SSE18.E79.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.SSE18.E79.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.SSE18.E80.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.SSE18.E80.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.SSE18.E80.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.SSE18.E81.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.SSE18.E81.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.SSE18.E81.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SE Win (G.SE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SE Win (G.SE1.E1.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SW Win (G.SE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.SE1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SW Win (G.SE1.E2.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SE Win (G.SE1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SE Win (G.SE1.E3.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NE Win (G.SE1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.SE1.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NE Win (G.SE1.E4.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SE Win (G.SE1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SE Win (G.SE1.E5.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NE Win (G.SE1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.SE1.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NE Win (G.SE1.E6.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SE Win (G.SE1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SE Win (G.SE1.E7.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SW Win (G.SE1.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.SE1.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SW Win (G.SE1.E8.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SE Win (G.SE1.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SE Win (G.SE1.E9.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SE Win (G.SE1.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SE Win (G.SE1.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SE Win (G.SE1.E10.W1) missing:has_manual_interior_shades" + } + }, + "L2-2WSW Win (G.SSE5.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E25.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SSE Win (G.SSE5.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E26.W1) missing:has_manual_interior_shades" + } + }, + "L2-2ENE Win (G.SSE5.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2ENE Win (G.SSE5.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2ENE Win (G.SSE5.E27.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SSE Win (G.SSE5.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E28.W1) missing:has_manual_interior_shades" + } + }, + "L2-2WSW Win (G.SSE5.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E29.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SSE Win (G.SSE5.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E30.W1) missing:has_manual_interior_shades" + } + }, + "L2-2WSW Win (G.SSE5.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2WSW Win (G.SSE5.E31.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SSE Win (G.SSE5.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E32.W1) missing:has_manual_interior_shades" + } + }, + "L2-2ENE Win (G.SSE5.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2ENE Win (G.SSE5.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2ENE Win (G.SSE5.E33.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SSE Win (G.SSE5.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SSE Win (G.SSE5.E34.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (G.ENE1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.ENE1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (G.ENE1.E1.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.ENE1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.ENE1.E2.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (G.ENE1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.ENE1.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (G.ENE1.E3.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.ENE1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE1.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.ENE1.E4.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (G.ENE1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.ENE1.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (G.ENE1.E5.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.ENE1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE1.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.ENE1.E6.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (G.SE2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (G.SE2.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (G.SE2.E9.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (G.SE2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (G.SE2.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (G.SE2.E10.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (G.SE2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (G.SE2.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (G.SE2.E11.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.SE2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.SE2.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.SE2.E12.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (G.NE3.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (G.NE3.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (G.NE3.E13.W1) missing:has_manual_interior_shades" + } + }, + "L3NW Win (G.NE3.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NW Win (G.NE3.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NW Win (G.NE3.E14.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (G.NE3.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (G.NE3.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (G.NE3.E15.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.NE3.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.NE3.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.NE3.E16.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.NE3.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.NE3.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.NE3.E17.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.NE3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.NE3.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.NE3.E18.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (G.NE3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (G.NE3.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (G.NE3.E19.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.NW5.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.NW5.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.NW5.E20.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.NW5.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.NW5.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.NW5.E21.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.WSW7.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW7.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.WSW7.E27.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.WSW7.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW7.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.WSW7.E28.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.WSW7.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW7.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.WSW7.E29.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.WSW7.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.WSW7.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.WSW7.E30.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.ENE13.E46.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E46.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.ENE13.E46.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (G.ENE13.E47.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.ENE13.E47.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (G.ENE13.E47.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.ENE13.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E48.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.ENE13.E48.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (G.ENE13.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.ENE13.E49.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (G.ENE13.E49.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.ENE13.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E50.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.ENE13.E50.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (G.ENE13.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.ENE13.E51.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (G.ENE13.E51.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (G.ENE13.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (G.ENE13.E52.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (G.ENE13.E52.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.ENE13.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.ENE13.E53.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.ENE13.E53.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (G.WSW14.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E54.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (G.WSW14.E54.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (G.WSW14.E55.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.WSW14.E55.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (G.WSW14.E55.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (G.WSW14.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E56.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (G.WSW14.E56.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (G.WSW14.E57.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (G.WSW14.E57.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (G.WSW14.E57.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (G.WSW14.E58.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E58.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (G.WSW14.E58.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (G.WSW14.E59.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.WSW14.E59.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (G.WSW14.E59.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (G.WSW14.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E60.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (G.WSW14.E60.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (G.WSW14.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (G.WSW14.E61.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (G.WSW14.E61.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (G.WSW14.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW14.E62.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (G.WSW14.E62.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (G.N15.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E64.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (G.N15.E64.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E65.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E65.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.N15.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.N15.E66.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.N15.E66.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E67.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E67.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E67.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (G.N15.E68.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E68.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (G.N15.E68.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E69.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E69.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E69.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.N15.E70.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.N15.E70.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.N15.E70.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E71.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E71.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (G.N15.E72.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E72.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (G.N15.E72.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E73.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E73.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E73.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (G.N15.E74.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.N15.E74.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (G.N15.E74.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E75.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E75.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E75.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E76.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E76.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E76.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.N15.E77.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.N15.E77.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.N15.E77.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E78.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E78.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E78.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (G.N15.E79.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (G.N15.E79.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (G.N15.E79.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (G.SSE16.E80.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.SSE16.E80.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (G.SSE16.E80.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.SSE16.E81.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.SSE16.E81.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.SSE16.E81.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.SSE16.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.SSE16.E82.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.SSE16.E82.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.SSE16.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.SSE16.E83.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.SSE16.E83.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.S17.E84.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.S17.E84.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.S17.E84.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.S17.E85.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E85.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.S17.E85.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (G.S17.E86.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.S17.E86.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (G.S17.E86.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.S17.E87.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E87.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.S17.E87.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.S17.E88.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.S17.E88.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.S17.E88.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.S17.E89.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E89.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.S17.E89.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (G.S17.E90.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (G.S17.E90.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (G.S17.E90.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.S17.E91.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S17.E91.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.S17.E91.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (M.ENE18.E92.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.ENE18.E92.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (M.ENE18.E92.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.ENE18.E93.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE18.E93.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.ENE18.E93.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (M.ENE18.E94.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.ENE18.E94.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (M.ENE18.E94.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.ENE18.E95.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE18.E95.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.ENE18.E95.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (M.ENE18.E96.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.ENE18.E96.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (M.ENE18.E96.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.ENE18.E97.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE18.E97.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.ENE18.E97.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (M.SE19.E100.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (M.SE19.E100.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (M.SE19.E100.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (M.SE19.E101.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (M.SE19.E101.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (M.SE19.E101.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (M.SE19.E102.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (M.SE19.E102.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (M.SE19.E102.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.SE19.E103.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.SE19.E103.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.SE19.E103.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (M.NE20.E104.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (M.NE20.E104.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (M.NE20.E104.W1) missing:has_manual_interior_shades" + } + }, + "L3NW Win (M.NE20.E105.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NW Win (M.NE20.E105.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NW Win (M.NE20.E105.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (M.NE20.E106.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (M.NE20.E106.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (M.NE20.E106.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.NE20.E107.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.NE20.E107.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.NE20.E107.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.NE20.E108.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.NE20.E108.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.NE20.E108.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.NE20.E109.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.NE20.E109.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.NE20.E109.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (M.NE20.E110.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (M.NE20.E110.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (M.NE20.E110.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.NW22.E111.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.NW22.E111.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.NW22.E111.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.NW22.E112.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.NW22.E112.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.NW22.E112.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.WSW24.E118.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW24.E118.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.WSW24.E118.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.WSW24.E119.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW24.E119.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.WSW24.E119.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.WSW24.E120.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW24.E120.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.WSW24.E120.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.WSW24.E121.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.WSW24.E121.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.WSW24.E121.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.ENE30.E137.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E137.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.ENE30.E137.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (M.ENE30.E138.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.ENE30.E138.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (M.ENE30.E138.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.ENE30.E139.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E139.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.ENE30.E139.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (M.ENE30.E140.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.ENE30.E140.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (M.ENE30.E140.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.ENE30.E141.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E141.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.ENE30.E141.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (M.ENE30.E142.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.ENE30.E142.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (M.ENE30.E142.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (M.ENE30.E143.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (M.ENE30.E143.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (M.ENE30.E143.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.ENE30.E144.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.ENE30.E144.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.ENE30.E144.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (M.WSW31.E145.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E145.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (M.WSW31.E145.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (M.WSW31.E146.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.WSW31.E146.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (M.WSW31.E146.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (M.WSW31.E147.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E147.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (M.WSW31.E147.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (M.WSW31.E148.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (M.WSW31.E148.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (M.WSW31.E148.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (M.WSW31.E149.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E149.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (M.WSW31.E149.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (M.WSW31.E150.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.WSW31.E150.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (M.WSW31.E150.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (M.WSW31.E151.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E151.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (M.WSW31.E151.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (M.WSW31.E152.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (M.WSW31.E152.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (M.WSW31.E152.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (M.WSW31.E153.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW31.E153.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (M.WSW31.E153.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (M.N32.E155.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E155.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (M.N32.E155.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E156.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E156.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E156.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.N32.E157.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.N32.E157.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.N32.E157.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E158.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E158.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E158.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (M.N32.E159.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E159.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (M.N32.E159.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E160.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E160.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E160.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.N32.E161.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.N32.E161.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.N32.E161.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E162.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E162.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E162.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (M.N32.E163.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E163.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (M.N32.E163.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E164.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E164.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E164.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (M.N32.E165.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.N32.E165.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (M.N32.E165.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E166.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E166.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E166.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E167.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E167.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E167.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.N32.E168.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.N32.E168.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.N32.E168.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E169.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E169.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E169.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (M.N32.E170.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (M.N32.E170.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (M.N32.E170.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (M.SSE33.E171.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.SSE33.E171.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (M.SSE33.E171.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.SSE33.E172.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.SSE33.E172.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.SSE33.E172.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.SSE33.E173.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.SSE33.E173.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.SSE33.E173.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.SSE33.E174.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.SSE33.E174.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.SSE33.E174.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.S34.E175.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.S34.E175.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.S34.E175.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.S34.E176.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E176.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.S34.E176.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (M.S34.E177.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.S34.E177.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (M.S34.E177.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.S34.E178.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E178.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.S34.E178.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.S34.E179.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.S34.E179.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.S34.E179.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.S34.E180.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E180.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.S34.E180.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (M.S34.E181.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (M.S34.E181.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (M.S34.E181.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.S34.E182.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S34.E182.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.S34.E182.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (T.ENE35.E183.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.ENE35.E183.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (T.ENE35.E183.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.ENE35.E184.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE35.E184.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.ENE35.E184.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (T.ENE35.E185.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.ENE35.E185.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (T.ENE35.E185.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.ENE35.E186.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE35.E186.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.ENE35.E186.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (T.ENE35.E187.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.ENE35.E187.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (T.ENE35.E187.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.ENE35.E188.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE35.E188.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.ENE35.E188.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (T.SE36.E192.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (T.SE36.E192.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (T.SE36.E192.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (T.SE36.E193.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (T.SE36.E193.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (T.SE36.E193.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (T.SE36.E194.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (T.SE36.E194.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (T.SE36.E194.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.SE36.E195.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.SE36.E195.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.SE36.E195.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (T.NE37.E197.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (T.NE37.E197.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (T.NE37.E197.W1) missing:has_manual_interior_shades" + } + }, + "L3NW Win (T.NE37.E198.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NW Win (T.NE37.E198.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NW Win (T.NE37.E198.W1) missing:has_manual_interior_shades" + } + }, + "L3NE Win (T.NE37.E199.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NE Win (T.NE37.E199.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NE Win (T.NE37.E199.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.NE37.E200.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.NE37.E200.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.NE37.E200.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.NE37.E201.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.NE37.E201.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.NE37.E201.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.NE37.E202.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.NE37.E202.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.NE37.E202.W1) missing:has_manual_interior_shades" + } + }, + "L3SE Win (T.NE37.E203.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SE Win (T.NE37.E203.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SE Win (T.NE37.E203.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.NW39.E206.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.NW39.E206.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.NW39.E206.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.NW39.E207.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.NW39.E207.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.NW39.E207.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.WSW41.E215.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW41.E215.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.WSW41.E215.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.WSW41.E216.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW41.E216.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.WSW41.E216.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.WSW41.E217.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW41.E217.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.WSW41.E217.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.WSW41.E218.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.WSW41.E218.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.WSW41.E218.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.ENE47.E240.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E240.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.ENE47.E240.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (T.ENE47.E241.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.ENE47.E241.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (T.ENE47.E241.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.ENE47.E242.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E242.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.ENE47.E242.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (T.ENE47.E243.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.ENE47.E243.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (T.ENE47.E243.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.ENE47.E244.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E244.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.ENE47.E244.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (T.ENE47.E245.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.ENE47.E245.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (T.ENE47.E245.W1) missing:has_manual_interior_shades" + } + }, + "L3ENE Win (T.ENE47.E246.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3ENE Win (T.ENE47.E246.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3ENE Win (T.ENE47.E246.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.ENE47.E247.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.ENE47.E247.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.ENE47.E247.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (T.WSW48.E249.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E249.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (T.WSW48.E249.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (T.WSW48.E250.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.WSW48.E250.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (T.WSW48.E250.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (T.WSW48.E251.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E251.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (T.WSW48.E251.W1) missing:has_manual_interior_shades" + } + }, + "L3NNW Win (T.WSW48.E252.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3NNW Win (T.WSW48.E252.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3NNW Win (T.WSW48.E252.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (T.WSW48.E253.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E253.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (T.WSW48.E253.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (T.WSW48.E254.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.WSW48.E254.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (T.WSW48.E254.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (T.WSW48.E255.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E255.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (T.WSW48.E255.W1) missing:has_manual_interior_shades" + } + }, + "L3SSE Win (T.WSW48.E256.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3SSE Win (T.WSW48.E256.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3SSE Win (T.WSW48.E256.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (T.WSW48.E257.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW48.E257.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (T.WSW48.E257.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (T.N49.E260.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E260.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (T.N49.E260.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E261.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E261.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E261.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.N49.E262.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.N49.E262.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.N49.E262.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E263.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E263.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E263.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (T.N49.E264.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E264.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (T.N49.E264.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E265.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E265.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E265.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.N49.E266.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.N49.E266.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.N49.E266.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E267.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E267.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E267.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (T.N49.E268.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E268.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (T.N49.E268.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E269.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E269.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E269.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (T.N49.E270.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.N49.E270.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (T.N49.E270.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E271.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E271.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E271.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E272.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E272.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E272.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.N49.E273.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.N49.E273.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.N49.E273.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E274.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E274.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E274.W1) missing:has_manual_interior_shades" + } + }, + "L3North Win (T.N49.E275.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3North Win (T.N49.E275.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3North Win (T.N49.E275.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (T.SSE50.E277.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.SSE50.E277.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (T.SSE50.E277.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.SSE50.E278.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.SSE50.E278.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.SSE50.E278.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.SSE50.E279.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.SSE50.E279.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.SSE50.E279.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.SSE50.E280.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.SSE50.E280.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.SSE50.E280.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.S51.E282.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.S51.E282.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.S51.E282.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.S51.E283.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E283.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.S51.E283.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (T.S51.E284.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.S51.E284.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (T.S51.E284.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.S51.E285.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E285.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.S51.E285.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.S51.E286.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.S51.E286.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.S51.E286.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.S51.E287.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E287.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.S51.E287.W1) missing:has_manual_interior_shades" + } + }, + "L3East Win (T.S51.E288.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3East Win (T.S51.E288.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3East Win (T.S51.E288.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.S51.E289.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S51.E289.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.S51.E289.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (G.SSW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (G.SSW1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (G.SSW1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (G.SSW1.E2.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (G.SSW1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSW1.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (G.SSW1.E3.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (G.SSW1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSW1.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (G.SSW1.E5.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (G.SE2.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.SE2.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (G.SE2.E6.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (G.SE2.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (G.SE2.E7.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (G.SE2.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.SE2.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (G.SE2.E8.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (G.SE2.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (G.SE2.E9.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (G.SE2.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.SE2.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (G.SE2.E10.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (G.SE2.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (G.SE2.E11.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (G.SE2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.SE2.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (G.SE2.E12.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (G.SE2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (G.SE2.E13.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (G.SE2.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (G.SE2.E14.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (G.SE2.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (G.SE2.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (G.SE2.E15.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (G.NNW5.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E31.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (G.NNW5.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.NNW5.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (G.NNW5.E32.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (G.NNW5.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E33.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (G.NNW5.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (G.NNW5.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (G.NNW5.E34.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (G.NNW5.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E35.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (G.NNW5.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.NNW5.E36.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (G.NNW5.E36.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (G.NNW5.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E37.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E37.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (G.NNW5.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (G.NNW5.E38.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (G.NNW5.E38.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (G.NNW5.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E39.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (G.NNW5.E39.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (G.SSE6.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E42.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E42.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (G.SSE6.E43.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E43.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E43.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (G.SSE6.E44.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (G.SSE6.E44.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (G.SSE6.E44.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (G.SSE6.E45.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E45.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E45.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (G.SSE6.E46.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E46.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E46.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (G.SSE6.E47.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E47.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E47.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (G.SSE6.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E48.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (G.SSE6.E48.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (G.SSE6.E49.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E49.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E49.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (G.SSE6.E50.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (G.SSE6.E50.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (G.SSE6.E50.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (G.SSE6.E51.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E51.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (G.SSE6.E51.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (M.SSW7.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSW7.E52.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (M.SSW7.E52.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (M.SSW7.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (M.SSW7.E53.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (M.SSW7.E53.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (M.SSW7.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSW7.E54.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (M.SSW7.E54.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (M.SSW7.E56.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSW7.E56.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (M.SSW7.E56.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (M.SE8.E57.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.SE8.E57.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (M.SE8.E57.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (M.SE8.E58.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E58.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (M.SE8.E58.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (M.SE8.E59.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.SE8.E59.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (M.SE8.E59.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (M.SE8.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E60.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (M.SE8.E60.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (M.SE8.E61.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.SE8.E61.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (M.SE8.E61.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (M.SE8.E62.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E62.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (M.SE8.E62.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (M.SE8.E63.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.SE8.E63.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (M.SE8.E63.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (M.SE8.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E64.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (M.SE8.E64.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (M.SE8.E65.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E65.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (M.SE8.E65.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (M.SE8.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (M.SE8.E66.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (M.SE8.E66.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (M.NNW11.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E82.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E82.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (M.NNW11.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.NNW11.E83.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (M.NNW11.E83.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (M.NNW11.E84.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E84.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E84.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (M.NNW11.E85.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (M.NNW11.E85.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (M.NNW11.E85.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (M.NNW11.E86.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E86.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E86.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (M.NNW11.E87.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.NNW11.E87.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (M.NNW11.E87.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (M.NNW11.E88.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E88.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E88.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (M.NNW11.E89.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (M.NNW11.E89.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (M.NNW11.E89.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (M.NNW11.E90.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E90.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (M.NNW11.E90.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (M.SSE12.E93.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E93.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E93.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (M.SSE12.E94.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E94.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E94.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (M.SSE12.E95.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (M.SSE12.E95.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (M.SSE12.E95.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (M.SSE12.E96.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E96.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E96.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (M.SSE12.E97.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E97.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E97.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (M.SSE12.E98.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E98.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E98.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (M.SSE12.E99.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E99.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (M.SSE12.E99.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (M.SSE12.E100.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E100.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E100.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (M.SSE12.E101.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (M.SSE12.E101.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (M.SSE12.E101.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (M.SSE12.E102.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E102.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (M.SSE12.E102.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (T.SSW13.E103.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSW13.E103.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (T.SSW13.E103.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (T.SSW13.E104.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (T.SSW13.E104.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (T.SSW13.E104.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (T.SSW13.E105.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSW13.E105.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (T.SSW13.E105.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (T.SSW13.E107.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSW13.E107.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (T.SSW13.E107.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (T.SE14.E109.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.SE14.E109.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (T.SE14.E109.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (T.SE14.E110.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E110.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (T.SE14.E110.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (T.SE14.E111.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.SE14.E111.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (T.SE14.E111.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (T.SE14.E112.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E112.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (T.SE14.E112.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (T.SE14.E113.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.SE14.E113.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (T.SE14.E113.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (T.SE14.E114.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E114.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (T.SE14.E114.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (T.SE14.E115.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.SE14.E115.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (T.SE14.E115.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (T.SE14.E116.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E116.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (T.SE14.E116.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (T.SE14.E117.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E117.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (T.SE14.E117.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SE Win (T.SE14.E118.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SE Win (T.SE14.E118.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SE Win (T.SE14.E118.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (T.NNW17.E137.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E137.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E137.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (T.NNW17.E138.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.NNW17.E138.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (T.NNW17.E138.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (T.NNW17.E139.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E139.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E139.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NE Win (T.NNW17.E140.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NE Win (T.NNW17.E140.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NE Win (T.NNW17.E140.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (T.NNW17.E141.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E141.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E141.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (T.NNW17.E142.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.NNW17.E142.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (T.NNW17.E142.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (T.NNW17.E143.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E143.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E143.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SW Win (T.NNW17.E144.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SW Win (T.NNW17.E144.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SW Win (T.NNW17.E144.W1) missing:has_manual_interior_shades" + } + }, + "L3-2NW Win (T.NNW17.E145.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E145.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2NW Win (T.NNW17.E145.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (T.SSE18.E149.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E149.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E149.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (T.SSE18.E150.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E150.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E150.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (T.SSE18.E151.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (T.SSE18.E151.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (T.SSE18.E151.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (T.SSE18.E152.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E152.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E152.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (T.SSE18.E153.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E153.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E153.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (T.SSE18.E154.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E154.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E154.W1) missing:has_manual_interior_shades" + } + }, + "L3-2WSW Win (T.SSE18.E155.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E155.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2WSW Win (T.SSE18.E155.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (T.SSE18.E156.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E156.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E156.W1) missing:has_manual_interior_shades" + } + }, + "L3-2ENE Win (T.SSE18.E157.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2ENE Win (T.SSE18.E157.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2ENE Win (T.SSE18.E157.W1) missing:has_manual_interior_shades" + } + }, + "L3-2SSE Win (T.SSE18.E158.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E158.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3-2SSE Win (T.SSE18.E158.W1) missing:has_manual_interior_shades" + } + }, + "L1SE Win (G.E1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SE Win (G.E1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SE Win (G.E1.E2.W1) missing:has_manual_interior_shades" + } + }, + "L1NE Win (G.E1.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Win (G.E1.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NE Win (G.E1.E3.W1) missing:has_manual_interior_shades" + } + }, + "L1SE Win (G.E1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SE Win (G.E1.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SE Win (G.E1.E4.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.E1.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.E1.E5.W1) missing:has_manual_interior_shades" + } + }, + "L1NNW Win (G.E1.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.E1.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NNW Win (G.E1.E6.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.E1.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.E1.E7.W1) missing:has_manual_interior_shades" + } + }, + "L1SSE Win (G.E1.E8.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SSE Win (G.E1.E8.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SSE Win (G.E1.E8.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.E1.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.E1.E9.W1) missing:has_manual_interior_shades" + } + }, + "L1NNW Win (G.E1.E10.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NNW Win (G.E1.E10.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NNW Win (G.E1.E10.W1) missing:has_manual_interior_shades" + } + }, + "L1ENE Win (G.E1.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1ENE Win (G.E1.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1ENE Win (G.E1.E11.W1) missing:has_manual_interior_shades" + } + }, + "L1SE Win (G.N2.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SE Win (G.N2.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SE Win (G.N2.E12.W1) missing:has_manual_interior_shades" + } + }, + "L1NE Win (G.N2.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Win (G.N2.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NE Win (G.N2.E13.W1) missing:has_manual_interior_shades" + } + }, + "L1NE Door (G.N2.E13.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Door (G.N2.E13.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NE Door (G.N2.E13.D1) missing:has_manual_interior_shades" + } + }, + "L1NE Door (G.N2.E13.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Door (G.N2.E13.D2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NE Door (G.N2.E13.D2) missing:has_manual_interior_shades" + } + }, + "L1NW Win (G.N2.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NW Win (G.N2.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NW Win (G.N2.E14.W1) missing:has_manual_interior_shades" + } + }, + "L1NE Win (G.N2.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1NE Win (G.N2.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1NE Win (G.N2.E15.W1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E16.W1) missing:has_manual_interior_shades" + } + }, + "L1WNW Win (G.N2.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1WNW Win (G.N2.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1WNW Win (G.N2.E17.W1) missing:has_manual_interior_shades" + } + }, + "L1North Door (G.N2.E18.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E18.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Door (G.N2.E18.D1) missing:has_manual_interior_shades" + } + }, + "L1North Door (G.N2.E18.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E18.D2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Door (G.N2.E18.D2) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.N2.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.N2.E19.W1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E20.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.N2.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.N2.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.N2.E21.W1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E22.W1) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.N2.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.N2.E23.W1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E24.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.N2.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.N2.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.N2.E25.W1) missing:has_manual_interior_shades" + } + }, + "L1North Door (G.N2.E26.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E26.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Door (G.N2.E26.D1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E26.W1) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.N2.E27.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E27.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.N2.E27.W1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E28.W1) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.N2.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.N2.E29.W1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E30.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E30.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E30.W1) missing:has_manual_interior_shades" + } + }, + "L1North Door (G.N2.E30.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E30.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Door (G.N2.E30.D1) missing:has_manual_interior_shades" + } + }, + "L1North Door (G.N2.E30.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Door (G.N2.E30.D2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Door (G.N2.E30.D2) missing:has_manual_interior_shades" + } + }, + "L1East Win (G.N2.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1East Win (G.N2.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1East Win (G.N2.E31.W1) missing:has_manual_interior_shades" + } + }, + "L1North Win (G.N2.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1North Win (G.N2.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1North Win (G.N2.E32.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.N2.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.N2.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.N2.E33.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.SSW6.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.SSW6.E38.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.SSW6.E38.W1) missing:has_manual_interior_shades" + } + }, + "L2South Win (G.SSW6.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2South Win (G.SSW6.E39.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2South Win (G.SSW6.E39.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.WSW17.E75.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.WSW17.E75.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.WSW17.E75.W1) missing:has_manual_interior_shades" + } + }, + "L2WSW Win (G.WSW17.E76.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2WSW Win (G.WSW17.E76.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2WSW Win (G.WSW17.E76.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NW Win (G.NNW3.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E11.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NE Win (G.NNW3.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.NNW3.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NE Win (G.NNW3.E12.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NW Win (G.NNW3.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E13.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NE Win (G.NNW3.E14.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NE Win (G.NNW3.E14.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NE Win (G.NNW3.E14.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NW Win (G.NNW3.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E15.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SW Win (G.NNW3.E16.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.NNW3.E16.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SW Win (G.NNW3.E16.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NW Win (G.NNW3.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E17.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SW Win (G.NNW3.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SW Win (G.NNW3.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SW Win (G.NNW3.E18.W1) missing:has_manual_interior_shades" + } + }, + "L2-2NW Win (G.NNW3.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2NW Win (G.NNW3.E19.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.S6.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.S6.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.S6.E22.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.S6.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.S6.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.S6.E23.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (G.WSW10.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (G.WSW10.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (G.WSW10.E33.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (G.WSW10.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (G.WSW10.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (G.WSW10.E34.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (G.WSW10.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (G.WSW10.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (G.WSW10.E35.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.S23.E113.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.S23.E113.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.S23.E113.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.S23.E114.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.S23.E114.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.S23.E114.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (M.WSW27.E124.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (M.WSW27.E124.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (M.WSW27.E124.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (M.WSW27.E125.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (M.WSW27.E125.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (M.WSW27.E125.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (M.WSW27.E126.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (M.WSW27.E126.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (M.WSW27.E126.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.S40.E209.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.S40.E209.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.S40.E209.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.S40.E210.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.S40.E210.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.S40.E210.W1) missing:has_manual_interior_shades" + } + }, + "L3West Win (T.WSW44.E224.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3West Win (T.WSW44.E224.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3West Win (T.WSW44.E224.W1) missing:has_manual_interior_shades" + } + }, + "L3South Win (T.WSW44.E225.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3South Win (T.WSW44.E225.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3South Win (T.WSW44.E225.W1) missing:has_manual_interior_shades" + } + }, + "L3WSW Win (T.WSW44.E226.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L3WSW Win (T.WSW44.E226.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L3WSW Win (T.WSW44.E226.W1) missing:has_manual_interior_shades" + } + }, + "ENTRWest Win (G.W1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRWest Win (G.W1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:ENTRWest Win (G.W1.E1.W1) missing:has_manual_interior_shades" + } + }, + "ENTRSouth Win (G.W1.E2.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRSouth Win (G.W1.E2.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:ENTRSouth Win (G.W1.E2.W1) missing:has_manual_interior_shades" + } + }, + "ENTRNorth Door (G.W1.E3.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRNorth Door (G.W1.E3.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:ENTRNorth Door (G.W1.E3.D1) missing:has_manual_interior_shades" + } + }, + "ENTRNorth Door (G.W1.E3.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:ENTRNorth Door (G.W1.E3.D2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:ENTRNorth Door (G.W1.E3.D2) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.WSW4.E36.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.WSW4.E36.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.WSW4.E36.W1) missing:has_manual_interior_shades" + } + }, + "L1South Win (G.WSW4.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1South Win (G.WSW4.E37.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1South Win (G.WSW4.E37.W1) missing:has_manual_interior_shades" + } + }, + "L1SW Win (G.WSW4.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1SW Win (G.WSW4.E38.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1SW Win (G.WSW4.E38.W1) missing:has_manual_interior_shades" + } + }, + "COMPSouth Door (G.W1.E2.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D1) missing:has_manual_interior_shades" + } + }, + "COMPSouth Door (G.W1.E2.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:COMPSouth Door (G.W1.E2.D2) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.W3.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.W3.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.W3.E34.W1) missing:has_manual_interior_shades" + } + }, + "L1West Win (G.W3.E35.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L1West Win (G.W3.E35.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L1West Win (G.W3.E35.W1) missing:has_manual_interior_shades" + } + }, + "L2West Win (G.W14.E64.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2West Win (G.W14.E64.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2West Win (G.W14.E64.W1) missing:has_manual_interior_shades" + } + }, + "MECHNorth Door (G.W1.E1.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:MECHNorth Door (G.W1.E1.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:MECHNorth Door (G.W1.E1.D1) missing:has_manual_interior_shades" + } + }, + "POOLEast Door (G.W1.E4.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:POOLEast Door (G.W1.E4.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:POOLEast Door (G.W1.E4.D1) missing:has_manual_interior_shades" + } + }, + "L2-2SSE Win (G.SSW4.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSW4.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SSE Win (G.SSW4.E20.W1) missing:has_manual_interior_shades" + } + }, + "L2-2ENE Win (G.SSW4.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2ENE Win (G.SSW4.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2ENE Win (G.SSW4.E21.W1) missing:has_manual_interior_shades" + } + }, + "L2-2SSE Win (G.SSW4.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2SSE Win (G.SSW4.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2SSE Win (G.SSW4.E22.W1) missing:has_manual_interior_shades" + } + }, + "L2-2WSW Win (G.SSW4.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:L2-2WSW Win (G.SSW4.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:L2-2WSW Win (G.SSW4.E24.W1) missing:has_manual_interior_shades" + } + } + }, + "5-24": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_skylight_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_b", + "value": "47168.24195000001", + "unit": "ft2" + }, + { + "variable": "total_skylight_area_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_p", + "value": "47168.24195000001", + "unit": "ft2" + }, + { + "variable": "skylight_roof_ratio_b", + "value": "0.0 dimensionless" + }, + { + "variable": "skylight_roof_ratio_p", + "value": "0.0 dimensionless" + } + ], + "messages": "" + } + }, + "5-25": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-26": { + "MULTIFAMILY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + } + }, + "5-27": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-28": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-29": { + "L3Roof (T.ENE35.E189)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.SE36.E196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.NE37.E204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.NW39.E208)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.WSW41.E219)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.ENE47.E248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.WSW48.E259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.N49.E276)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.SSE50.E281)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.S51.E290)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSW13.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.SE14.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW17.E148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSE18.E159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.S40.E214)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.WSW44.E231)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW16.E134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "ENTRRoof (G.W1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "COMPRoof (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Ceiling (M.C21.I140)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:L3Ceiling (M.C21.I140) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "L3Roof (T.C38.E205)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.SW45.E235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.C9.I44)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:L3-2Ceiling (M.C9.I44) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "L3-2Roof (T.C15.E120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "MECHRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "POOLRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-30": { + "L3Roof (T.ENE35.E189)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.SE36.E196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.NE37.E204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.NW39.E208)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.WSW41.E219)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.ENE47.E248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.WSW48.E259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.N49.E276)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.SSE50.E281)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.S51.E290)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSW13.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.SE14.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW17.E148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSE18.E159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.S40.E214)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.WSW44.E231)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW16.E134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "ENTRRoof (G.W1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.C38.E205)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.SW45.E235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "L3-2Roof (T.C15.E120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "MECHRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "POOLRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "COMPRoof (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-31": { + "L3Roof (T.ENE35.E189)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.SE36.E196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.NE37.E204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.NW39.E208)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.WSW41.E219)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.ENE47.E248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.WSW48.E259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.N49.E276)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.SSE50.E281)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.S51.E290)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSW13.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3-2Roof (T.SE14.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW17.E148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSE18.E159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.S40.E214)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.WSW44.E231)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW16.E134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "ENTRRoof (G.W1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "COMPRoof (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Ceiling (M.C21.I140)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "L3Roof (T.C38.E205)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3Roof (T.SW45.E235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "L3-2Ceiling (M.C9.I44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "L3-2Roof (T.C15.E120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "MECHRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "POOLRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + } + }, + "5-32": { + "L3Roof (T.ENE35.E189)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.SE36.E196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.NE37.E204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.NW39.E208)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.WSW41.E219)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.ENE47.E248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.WSW48.E259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.N49.E276)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.SSE50.E281)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.S51.E290)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSW13.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.SE14.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW17.E148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.SSE18.E159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.S40.E214)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.WSW44.E231)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.NNW16.E134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "ENTRRoof (G.W1.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.C38.E205)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3Roof (T.SW45.E235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "L3-2Roof (T.C15.E120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MECHRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "POOLRoof (G.W1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "COMPRoof (G.W1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-33": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "failing_infiltration_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-34": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "failing_infiltration_zone_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-35": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "23342.320600771334", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "24600.39986543999", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "219646.42736999993", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "1.0000000000000002 cfm/ft2" + }, + { + "variable": "target_air_leakage_rate_75pa_b", + "value": "219646.42736999993", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "5-36": { + "L1 Mech zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "8.100127297166667", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "4.859302604000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1 Elevator 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "19.636373827", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "11.78243007666667", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1 Elev 1-2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "21.230575153333334", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.738345092000001", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1 Elev 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "9.95242154", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "5.971452924", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Shaft zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "28.246059741333333", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "16.947950774666666", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Elev 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "23.431852347000003", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "14.05944897", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Elev 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "21.45073833", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.87072612", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Elev 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Elev 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "21.45073833", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.87072612", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Elev 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5 Elev 1-2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "20.233138137666668", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "12.137950088", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5 Elev 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "30.34076913", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "18.2047446", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5 Elev 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "9.994604299999999", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "5.99676258", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "5-37": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "14010.123703713996", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "14372.13882518399", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "213871.11346999987", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "0.6 cfm / foot ** 2" + }, + { + "variable": "building_total_measured_air_leakage_rate", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "target_air_leakage_rate_75pa_p", + "value": "128322.66808199992", + "unit": "cfm" + }, + { + "variable": "empty_measured_air_leakage_rate_flow_flag", + "value": "True" + } + ], + "messages": "The building total air leakage rate is not equal to the required proposed design air leakage rate at 75Pa with a Conversion Factor of 0.112 as per section G3.1.1.4. and Measured air leakage rate is not entered for all conditioned and semi-heated zones. Verify the proposed air leakage rate is modeled correctly." + } + }, + "5-38": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "ground_temperature_schedule", + "value": "None" + } + ], + "messages": "A ground temperature schedule was not found for the project." + } + }, + "5-39": { + "L1West Wall (G.W5.E39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.ENE13.E49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SSE Wall (G.ENE13.E50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.ENE13.E51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SSE Wall (G.ENE13.E52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.ENE13.E53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NNW Wall (G.ENE13.E54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.ENE13.E55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.ENE13.E56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.S19.E61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.S19.E63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.S19.E65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.S19.E67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.S19.E69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.S19.E71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.S19.E73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.S19.E75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.S19.E76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1WSW Wall (G.WSW20.E77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NNW Wall (G.WSW20.E78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1WSW Wall (G.WSW20.E79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NNW Wall (G.WSW20.E80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1WSW Wall (G.WSW20.E81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SSE Wall (G.WSW20.E82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1WSW Wall (G.WSW20.E83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SSE Wall (G.WSW20.E84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1WSW Wall (G.WSW20.E85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SE Wall (G.SE1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SW Wall (G.SE1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SE Wall (G.SE1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NE Wall (G.SE1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SE Wall (G.SE1.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NE Wall (G.SE1.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SE Wall (G.SE1.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SW Wall (G.SE1.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SE Wall (G.SE1.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NW Wall (G.NW3.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NE Wall (G.NW3.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NW Wall (G.NW3.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NE Wall (G.NW3.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NW Wall (G.NW3.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SW Wall (G.NW3.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NW Wall (G.NW3.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SW Wall (G.NW3.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2NW Wall (G.NW3.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SSE Wall (G.SSW5.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2ENE Wall (G.SSW5.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SSE Wall (G.SSW5.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2WSW Wall (G.SSW5.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2WSW Wall (G.SSE6.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SSE Wall (G.SSE6.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2ENE Wall (G.SSE6.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SSE Wall (G.SSE6.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2WSW Wall (G.SSE6.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SSE Wall (G.SSE6.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2WSW Wall (G.SSE6.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SSE Wall (G.SSE6.E38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2ENE Wall (G.SSE6.E39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1-2SSE Wall (G.SSE6.E40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.NNE1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.NNE1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.N2.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2East Wall (G.N2.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.N2.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2East Wall (G.N2.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.N2.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2East Wall (G.N2.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2East Wall (G.N2.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.N2.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NNW Wall (G.NE3.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.NE3.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SE Wall (G.NE3.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NE Wall (G.NE3.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NW Wall (G.NE3.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NE Wall (G.NE3.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2North Wall (G.NE3.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.NE3.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.ENE4.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NNW Wall (G.ENE4.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.ENE4.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SSE Wall (G.ENE4.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.ENE4.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SE Wall (G.SE5.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NE Wall (G.SE5.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SE Wall (G.SE5.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.SE5.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.WSW8.E40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.WSW8.E41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.WSW8.E42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.WSW8.E43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2WSW Wall (G.WSW12.E48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NNW Wall (G.WSW12.E49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2WSW Wall (G.WSW12.E50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NNW Wall (G.WSW12.E51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2WSW Wall (G.WSW12.E52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SSE Wall (G.WSW12.E53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2WSW Wall (G.WSW12.E54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SSE Wall (G.WSW12.E55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2WSW Wall (G.WSW12.E56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.ENE13.E57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SSE Wall (G.ENE13.E58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.ENE13.E59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2SSE Wall (G.ENE13.E60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.ENE13.E61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2NNW Wall (G.ENE13.E62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2ENE Wall (G.ENE13.E63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.S15.E65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.S15.E66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2East Wall (G.S15.E67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.S15.E68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.S15.E69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.S15.E70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2East Wall (G.S15.E71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.S15.E72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2East Wall (G.SSE18.E78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.SSE18.E79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.SSE18.E80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.SSE18.E81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SE Wall (G.SE1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SW Wall (G.SE1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SE Wall (G.SE1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NE Wall (G.SE1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SE Wall (G.SE1.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NE Wall (G.SE1.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SE Wall (G.SE1.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SW Wall (G.SE1.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SE Wall (G.SE1.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SE Wall (G.SE1.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2WSW Wall (G.SSE5.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SSE Wall (G.SSE5.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2ENE Wall (G.SSE5.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SSE Wall (G.SSE5.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2WSW Wall (G.SSE5.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SSE Wall (G.SSE5.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2WSW Wall (G.SSE5.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SSE Wall (G.SSE5.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2ENE Wall (G.SSE5.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SSE Wall (G.SSE5.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (G.ENE1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.ENE1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (G.ENE1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.ENE1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (G.ENE1.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.ENE1.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (G.SE2.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (G.SE2.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (G.SE2.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.SE2.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (G.NE3.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NW Wall (G.NE3.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (G.NE3.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.NE3.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.NE3.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.NE3.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (G.NE3.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.NW5.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.NW5.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.WSW7.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.WSW7.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.WSW7.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.WSW7.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.ENE13.E46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (G.ENE13.E47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.ENE13.E48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (G.ENE13.E49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.ENE13.E50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (G.ENE13.E51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (G.ENE13.E52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.ENE13.E53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (G.WSW14.E54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (G.WSW14.E55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (G.WSW14.E56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (G.WSW14.E57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (G.WSW14.E58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (G.WSW14.E59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (G.WSW14.E60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (G.WSW14.E61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (G.WSW14.E62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (G.N15.E64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.N15.E66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (G.N15.E68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.N15.E70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (G.N15.E72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (G.N15.E74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.N15.E77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (G.N15.E79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (G.SSE16.E80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.SSE16.E81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.SSE16.E82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.SSE16.E83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.S17.E84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.S17.E85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (G.S17.E86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.S17.E87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.S17.E88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.S17.E89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (G.S17.E90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.S17.E91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (M.ENE18.E92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.ENE18.E93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (M.ENE18.E94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.ENE18.E95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (M.ENE18.E96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.ENE18.E97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (M.SE19.E100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (M.SE19.E101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (M.SE19.E102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.SE19.E103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (M.NE20.E104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NW Wall (M.NE20.E105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (M.NE20.E106)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.NE20.E107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.NE20.E108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.NE20.E109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (M.NE20.E110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.NW22.E111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.NW22.E112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.WSW24.E118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.WSW24.E119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.WSW24.E120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.WSW24.E121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.ENE30.E137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (M.ENE30.E138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.ENE30.E139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (M.ENE30.E140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.ENE30.E141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (M.ENE30.E142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (M.ENE30.E143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.ENE30.E144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (M.WSW31.E145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (M.WSW31.E146)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (M.WSW31.E147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (M.WSW31.E148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (M.WSW31.E149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (M.WSW31.E150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (M.WSW31.E151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (M.WSW31.E152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (M.WSW31.E153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (M.N32.E155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.N32.E157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (M.N32.E159)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E160)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.N32.E161)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E162)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (M.N32.E163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E164)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (M.N32.E165)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.N32.E168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E169)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (M.N32.E170)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (M.SSE33.E171)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.SSE33.E172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.SSE33.E173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.SSE33.E174)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.S34.E175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.S34.E176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (M.S34.E177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.S34.E178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.S34.E179)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.S34.E180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (M.S34.E181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.S34.E182)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (T.ENE35.E183)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.ENE35.E184)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (T.ENE35.E185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.ENE35.E186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (T.ENE35.E187)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.ENE35.E188)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (T.SE36.E192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (T.SE36.E193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (T.SE36.E194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.SE36.E195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (T.NE37.E197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NW Wall (T.NE37.E198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NE Wall (T.NE37.E199)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.NE37.E200)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.NE37.E201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.NE37.E202)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SE Wall (T.NE37.E203)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.NW39.E206)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.NW39.E207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.WSW41.E215)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.WSW41.E216)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.WSW41.E217)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.WSW41.E218)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.ENE47.E240)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (T.ENE47.E241)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.ENE47.E242)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (T.ENE47.E243)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.ENE47.E244)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (T.ENE47.E245)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3ENE Wall (T.ENE47.E246)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.ENE47.E247)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (T.WSW48.E249)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (T.WSW48.E250)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (T.WSW48.E251)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3NNW Wall (T.WSW48.E252)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (T.WSW48.E253)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (T.WSW48.E254)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (T.WSW48.E255)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3SSE Wall (T.WSW48.E256)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (T.WSW48.E257)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (T.N49.E260)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E261)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.N49.E262)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E263)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (T.N49.E264)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E265)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.N49.E266)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E267)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (T.N49.E268)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E269)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (T.N49.E270)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E271)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E272)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.N49.E273)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E274)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3North Wall (T.N49.E275)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (T.SSE50.E277)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.SSE50.E278)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.SSE50.E279)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.SSE50.E280)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.S51.E282)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.S51.E283)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (T.S51.E284)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.S51.E285)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.S51.E286)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.S51.E287)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3East Wall (T.S51.E288)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.S51.E289)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (G.SSW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (G.SSW1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (G.SSW1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (G.SSW1.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (G.SE2.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (G.SE2.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (G.SE2.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (G.SE2.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (G.SE2.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (G.SE2.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (G.SE2.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (G.SE2.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (G.SE2.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (G.SE2.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (G.NNW5.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (G.NNW5.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (G.NNW5.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (G.NNW5.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (G.NNW5.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (G.NNW5.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (G.NNW5.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (G.NNW5.E38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (G.NNW5.E39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (G.SSE6.E42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (G.SSE6.E43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (G.SSE6.E44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (G.SSE6.E45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (G.SSE6.E46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (G.SSE6.E47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (G.SSE6.E48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (G.SSE6.E49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (G.SSE6.E50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (G.SSE6.E51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (M.SSW7.E52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (M.SSW7.E53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (M.SSW7.E54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (M.SSW7.E56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (M.SE8.E57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (M.SE8.E58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (M.SE8.E59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (M.SE8.E60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (M.SE8.E61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (M.SE8.E62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (M.SE8.E63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (M.SE8.E64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (M.SE8.E65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (M.SE8.E66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (M.NNW11.E82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (M.NNW11.E83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (M.NNW11.E84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (M.NNW11.E85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (M.NNW11.E86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (M.NNW11.E87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (M.NNW11.E88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (M.NNW11.E89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (M.NNW11.E90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (M.SSE12.E93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (M.SSE12.E94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (M.SSE12.E95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (M.SSE12.E96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (M.SSE12.E97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (M.SSE12.E98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (M.SSE12.E99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (M.SSE12.E100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (M.SSE12.E101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (M.SSE12.E102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (T.SSW13.E103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (T.SSW13.E104)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (T.SSW13.E105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (T.SSW13.E107)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (T.SE14.E109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (T.SE14.E110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (T.SE14.E111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (T.SE14.E112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (T.SE14.E113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (T.SE14.E114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (T.SE14.E115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (T.SE14.E116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (T.SE14.E117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SE Wall (T.SE14.E118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (T.NNW17.E137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (T.NNW17.E138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (T.NNW17.E139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NE Wall (T.NNW17.E140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (T.NNW17.E141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (T.NNW17.E142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (T.NNW17.E143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SW Wall (T.NNW17.E144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2NW Wall (T.NNW17.E145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (T.SSE18.E149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (T.SSE18.E150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (T.SSE18.E151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (T.SSE18.E152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (T.SSE18.E153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (T.SSE18.E154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2WSW Wall (T.SSE18.E155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (T.SSE18.E156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2ENE Wall (T.SSE18.E157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3-2SSE Wall (T.SSE18.E158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SE Wall (G.E1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NE Wall (G.E1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SE Wall (G.E1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.E1.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NNW Wall (G.E1.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.E1.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SSE Wall (G.E1.E8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.E1.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NNW Wall (G.E1.E10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1ENE Wall (G.E1.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SE Wall (G.N2.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NE Wall (G.N2.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NW Wall (G.N2.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1NE Wall (G.N2.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1WNW Wall (G.N2.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.N2.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.N2.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.N2.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.N2.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.N2.E27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.N2.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1East Wall (G.N2.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1North Wall (G.N2.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.N2.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.SSW6.E38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2South Wall (G.SSW6.E39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.WSW17.E75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2WSW Wall (G.WSW17.E76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NW Wall (G.NNW3.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NE Wall (G.NNW3.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NW Wall (G.NNW3.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NE Wall (G.NNW3.E14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NW Wall (G.NNW3.E15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SW Wall (G.NNW3.E16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NW Wall (G.NNW3.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SW Wall (G.NNW3.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2NW Wall (G.NNW3.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.S6.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.S6.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (G.WSW10.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (G.WSW10.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (G.WSW10.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.S23.E113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.S23.E114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (M.WSW27.E124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (M.WSW27.E125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (M.WSW27.E126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.S40.E209)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.S40.E210)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3West Wall (T.WSW44.E224)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3South Wall (T.WSW44.E225)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L3WSW Wall (T.WSW44.E226)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "ENTRWest Wall (G.W1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "ENTRSouth Wall (G.W1.E2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "ENTRNorth Wall (G.W1.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.WSW4.E36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1South Wall (G.WSW4.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1SW Wall (G.WSW4.E38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "COMPSouth Door (G.W1.E2.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.7514450867052025", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "" + }, + "COMPSouth Door (G.W1.E2.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.7514450867052025", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1West Wall (G.W3.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L1West Wall (G.W3.E35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2West Wall (G.W14.E64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MECHNorth Door (G.W1.E1.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.7514450867052025", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "" + }, + "POOLEast Door (G.W1.E4.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.7514450867052025", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2-2SSE Wall (G.SSW4.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2ENE Wall (G.SSW4.E21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2SSE Wall (G.SSW4.E22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "L2-2WSW Wall (G.SSW4.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-40": { + "L3Roof (T.C42.E220)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.SW43.E223)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + }, + "L3Roof (T.E46.E238)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_b", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_thermal_exterior_b", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + } + ], + "messages": "" + } + }, + "6-1": { + "Default Building Segment": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "allowable_LPD_BAM", + "value": "None" + }, + { + "variable": "building_segment_design_lighting_wattage", + "value": "134257.0660170901", + "unit": "W" + }, + { + "variable": "check_BAM_flag", + "value": "True" + }, + { + "variable": "total_building_segment_area_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "allowable_lighting_wattage_SBS", + "value": "0.0", + "unit": "W" + } + ], + "messages": "LIGHTING_BUILDING_AREA_TYPE is not known and LIGHTING_SPACE_TYPE is not known in all spaces to determine allowance." + } + }, + "6-2": { + "Units B105-B113": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit B-114": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units B101-B104": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 135": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 129-134": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby/Leasing/Amenities 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 111-113": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units B104 - 115": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 114-120": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 128": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units B105 - 128": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 201": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 202-208": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 210-211": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 213-217": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 218": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 247-248": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 212-216": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 241-246": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 205-209": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 203": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 220-229": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 231-239": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 313-317": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 318": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 310-311": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 350": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 347-348": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 342-346": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 312-316": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 308-349": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 303": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 305-309": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 413-417": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 418": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 410-411": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 450": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 447-448": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 442-446": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 412-416": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 408-449": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 403": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 404-409": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 513-517": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 518": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 510-511": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 550": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 547-548": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 542-546": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 512-516": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 508-549": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 503": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 504-509": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 340": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 320-330": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 319-327": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 331-339": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 440": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 420-430": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 419-427": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 431-439": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 540": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 520-530": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 519-527": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 531-539": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby/Leasing/Amenities": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Units 219-227": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entrance": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 - Storage 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Mech": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Mech 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elec/Meter Rm": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Stair B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Stair B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Elevator 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-Stair A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elevator 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elev 1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Elev 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Stair B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Elev 1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Stairs": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Shaft": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Elevator 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Stair A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Elev 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Stair A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Elev 1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Elev 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Stairs": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Elev 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Stair A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Elev 1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Elev 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Stairs": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Elev 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Stair A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Elev 1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Elev 3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Stairs": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Elev 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Stair B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Stair B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Stair B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Outdoor Mech Rm": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Pool equip. rm": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Storage": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Water Rm": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Main Electrical Rm": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Trash compactor rm": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Loading": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Gas Rm": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 - Storage": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "6-3": { + "Units B105-B113": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit B-114": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units B101-B104": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 135": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 129-134": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.63", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.63", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 111-113": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units B104 - 115": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 114-120": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 128": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units B105 - 128": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 201": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 202-208": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 210-211": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 213-217": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 218": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 247-248": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 212-216": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 241-246": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 205-209": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 203": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 220-229": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 231-239": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2-2 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 313-317": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 318": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 310-311": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 350": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 347-348": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 342-346": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 312-316": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 308-349": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 303": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 305-309": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 413-417": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 418": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 410-411": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 450": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 447-448": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 442-446": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 412-416": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 408-449": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 403": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 404-409": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 513-517": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 518": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 510-511": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 550": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 547-548": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 542-546": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 512-516": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 508-549": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 503": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 504-509": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 340": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 320-330": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 319-327": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 331-339": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 440": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 420-430": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 419-427": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 431-439": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 540": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 520-530": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 519-527": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 531-539": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "B-Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Retail": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.7175", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.7175", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.63", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.63", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "IDF": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Corridor 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1-2 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Units 219-227": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3 Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4 Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5 Corridor 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3-2 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4-2 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5-2 Corridor": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.3075", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Main entrance": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.63", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.63", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 - Storage 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Mech": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Mech 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Elec/Meter Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2-2 Stair B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "B-Stair B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "B-Elevator 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1-Stair A": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Elevator 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Elev 1-2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Elev 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1-2 Stair B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Elev 1-2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Shaft": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Elevator 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Stair A": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L2 Elev 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3 Stair A": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3 Elev 1-2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3 Elev 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3 Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3 Elev 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4 Stair A": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4 Elev 1-2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4 Elev 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4 Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4 Elev 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5 Stair A": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5 Elev 1-2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5 Elev 3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5 Stairs": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5 Elev 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L3-2 Stair B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L4-2 Stair B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L5-2 Stair B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.12250000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Outdoor Mech Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Pool equip. rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Unit 240": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "B-Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Water Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 Main Electrical Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Trash compactor rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Loading": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.77", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.77", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "Gas Rm": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.43", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "L1 - Storage": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.1662", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + } + }, + "6-4": { + "MULTIFAMILY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + } + }, + "6-5": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Default Building missing:building_open_schedule", + "BASELINE_0_MISSING_DATA": "id:Default Building missing:building_open_schedule" + } + } + }, + "6-6": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "ids_for_interior_lighting_instances_with_daylighting_control", + "value": "[]" + } + ], + "messages": "" + } + }, + "6-7": { + "Units B105-B113 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Unit B-114 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Units B101-B104 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Unit 135 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 129-134 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Lobby/Leasing/Amenities 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 111-113 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 104 - 115 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 114-120 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 128 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units B105 - 128 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 201 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 202-208 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 210-211 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 213-217 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 218 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 247-248 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 212-216 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 241-246 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 205-209 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 203 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 220-229 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 231-239 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L2-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Units 313-317 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 318 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 310-311 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 350 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 347-348 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 342-346 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 312-316 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 308-349 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 303 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 305-309 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 413-417 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 418 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 410-411 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 450 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 447-448 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 442-446 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 412-416 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 408-449 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 403 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 404-409 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 513-517 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 518 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 510-511 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 550 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 547-548 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 542-546 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 512-516 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 508-549 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 503 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 504-509 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 340 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 320-330 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 319-327 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 331-339 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 440 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 420-430 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 419-427 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 431-439 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Unit 540 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 520-530 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 519-527 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 531-539 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "B-Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Retail zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Lobby/Leasing/Amenities zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "IDF zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Corridor 1 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Corridor 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2 Corridor zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L2 Corridor 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "Units 219-227 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L3 Corridor zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L3 Corridor 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L4 Corridor zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L4 Corridor 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L5 Corridor zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L5 Corridor 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L3-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L4-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L5-2 Corridor zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Main entrance zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L1 - Storage 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Elec/Meter Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "B-Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "B-Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1-Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L1 Elevator 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Elev 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2 Shaft zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2 Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L2 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "L2 Elev 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L3 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L3 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L3 Elev 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L3 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L3 Elev 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L4 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L4 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L4 Elev 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L4 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L4 Elev 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L5 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L5 Elev 1-2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L5 Elev 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L5 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L5 Elev 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L3-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L4-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L5-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Outdoor Mech Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Pool equip. rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Unit 240 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "B-Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Water Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 Main Electrical Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Trash compactor rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Loading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "Gas Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "L1 - Storage zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + } + }, + "6-8": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "6-9": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "10-1": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be only one HVAC system serving each zone in the baseline RMD." + } + }, + "10-7": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "10-14": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "10-15": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be one system serving each zone in the baseline RMD." + } + }, + "11-1": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "proposed_user_comparison", + "value": "[]" + }, + { + "variable": "proposed_baseline_comparison", + "value": "[]" + } + ], + "messages": "" + } + }, + "11-6": { + "DHW Plant 1 Res Loop (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "piping_losses_modeled_b", + "value": "[False]" + } + ], + "messages": "" + } + }, + "11-7": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_distribution_systems:DHW Plant 1 Res Loop (1) is missing entering_water_mains_temperature_schedule" + } + }, + "11-8": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_distribution_systems:DHW Plant 1 Res Loop (1) is missing entering_water_mains_temperature_schedule" + } + }, + "11-9": { + "MULTIFAMILY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Check that the baseline Service Water Heating System for Building Area Type is sized according to ASHRAE Standard 90.1 2019, Section 7.4.1." + } + }, + "11-10": { + "DHW Plant 1 Res Wtr Htr (1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "swh_fuel_type_b", + "value": "NATURAL_GAS" + }, + { + "variable": "swh_tank_type_b", + "value": "COMMERCIAL_STORAGE" + }, + { + "variable": "swh_input_power_b", + "value": "128144.98844253473 watt" + }, + { + "variable": "swh_tank_storage_volume_b", + "value": "11850.000000000004 gallon" + }, + { + "variable": "swh_setpoint_temperature_b", + "value": "43.33333333333337 degree_Celsius" + }, + { + "variable": "modeled_efficiency_b", + "value": "0.8" + }, + { + "variable": "modeled_standby_loss_b", + "value": "None" + }, + { + "variable": "swh_input_power_per_volume_b", + "value": "36.898631988396616 Btu/h/gallon" + }, + { + "variable": "expected_efficiency_b", + "value": "0.8" + }, + { + "variable": "expected_efficiency_metric_b", + "value": "THERMAL_EFFICIENCY" + }, + { + "variable": "standby_loss_target_b", + "value": "12520.90856772061" + }, + { + "variable": "standby_loss_target_metric_b", + "value": "STANDBY_LOSS_ENERGY" + }, + { + "variable": "standby_loss_is_estimated_b", + "value": "False" + } + ], + "messages": "Based on the provided details, STANDBY_LOSS_ENERGY is an expected efficiency metric for this water heater, however it was not provided. Note that the specific requirements of 10 CFR 430 can be found in ASHRAE 90.1 Appendix F Table F-2." + } + }, + "11-11": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "11-12": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "buildings:Default Building is missing building_open_schedule" + } + }, + "11-13": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_distribution_systems:DHW Plant 1 Res Loop (1) is missing entering_water_mains_temperature_schedule" + } + }, + "11-14": { + "DHW Plant 1 Res Loop (1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "piping_info_b", + "value": "{'DHW Plant 1 Res Loop (1) ServiceWaterPiping': {'IS_RECIRC': False, 'PUMP_POWER': '0.0 Btu/hr'}}" + } + ], + "messages": "" + } + }, + "11-15": { + "DHW Plant 1 Res Loop (1) Load1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_swh_use_none_b", + "value": "False" + }, + { + "variable": "is_swh_use_none_p", + "value": "False" + }, + { + "variable": "swh_use_b", + "value": "21.396" + }, + { + "variable": "swh_use_p", + "value": "21.396" + }, + { + "variable": "swh_use_id_b", + "value": "DHW Plant 1 Res Loop (1) Load1" + }, + { + "variable": "swh_use_id_p", + "value": "DHW Plant 1 Res Loop (1) Load1" + }, + { + "variable": "swh_use_use_units_b", + "value": "VOLUME" + }, + { + "variable": "swh_use_use_units_p", + "value": "VOLUME" + }, + { + "variable": "swh_use_multiplier_schedule_b", + "value": "EPA MF DHW Ann 2628 EFLHs" + }, + { + "variable": "swh_use_multiplier_schedule_p", + "value": "EPA MF DHW Ann 2628 EFLHs" + }, + { + "variable": "swh_use_temperature_at_fixture_b", + "value": "110.0", + "unit": "F" + }, + { + "variable": "swh_use_temperature_at_fixture_p", + "value": "110.0", + "unit": "F" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_b", + "value": "None" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_p", + "value": "None" + }, + { + "variable": "swh_use_served_by_distribution_system_b", + "value": "{'id': 'DHW Plant 1 Res Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Res Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Res Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_served_by_distribution_system_p", + "value": "{'id': 'DHW Plant 1 Res Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Res Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Res Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_design_supply_water_temperature_b", + "value": "None" + }, + { + "variable": "swh_use_design_supply_water_temperature_p", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_b", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_p", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_b", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_p", + "value": "None" + } + ], + "messages": "" + } + }, + "11-16": { + "DHW Plant 1 Res Wtr Htr (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heater_fuel_type_b", + "value": "NATURAL_GAS" + }, + { + "variable": "proposed_fuels", + "value": "['NATURAL_GAS', 'ELECTRICITY']" + } + ], + "messages": "" + } + }, + "11-17": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_distribution_systems:DHW Plant 1 Res Loop (1) is missing entering_water_mains_temperature_schedule" + } + }, + "12-1": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "reduced_misc_equipment_power", + "value": "[{'id': 'Units B105-B113 MiscEqp1', 'baseline_power': '32209.298542636603 Btu/hr', 'proposed_power': '30100.356376154446 Btu/hr'}, {'id': 'Unit B-114 MiscEqp1', 'baseline_power': '5627.069504557105 Btu/hr', 'proposed_power': '5258.630429853962 Btu/hr'}, {'id': 'Units B101-B104 MiscEqp1', 'baseline_power': '15778.171483598977 Btu/hr', 'proposed_power': '14745.076922172855 Btu/hr'}, {'id': 'Unit 135 MiscEqp1', 'baseline_power': '4213.598519888992 Btu/hr', 'proposed_power': '3937.7081406105463 Btu/hr'}, {'id': 'Units 129-134 MiscEqp1', 'baseline_power': '26759.336606966837 Btu/hr', 'proposed_power': '25007.23718627258 Btu/hr'}, {'id': 'Units B104 - 115 MiscEqp1', 'baseline_power': '24504.08316525379 Btu/hr', 'proposed_power': '22899.64914848122 Btu/hr'}, {'id': 'Units 114-120 MiscEqp1', 'baseline_power': '18002.213742588072 Btu/hr', 'proposed_power': '16823.497366585285 Btu/hr'}, {'id': 'Unit 128 MiscEqp1', 'baseline_power': '5574.891506043282 Btu/hr', 'proposed_power': '5209.868847909495 Btu/hr'}, {'id': 'Units B105 - 128 MiscEqp1', 'baseline_power': '31703.870220348497 Btu/hr', 'proposed_power': '29628.021574968538 Btu/hr'}, {'id': 'Unit 201 MiscEqp1', 'baseline_power': '4668.199396430143 Btu/hr', 'proposed_power': '4362.543483568646 Btu/hr'}, {'id': 'Units 202-208 MiscEqp1', 'baseline_power': '22653.53810830895 Btu/hr', 'proposed_power': '21170.270732169673 Btu/hr'}, {'id': 'Units 210-211 MiscEqp1', 'baseline_power': '12898.909352299786 Btu/hr', 'proposed_power': '12054.337906613491 Btu/hr'}, {'id': 'Units 213-217 MiscEqp1', 'baseline_power': '13997.882686037521 Btu/hr', 'proposed_power': '13081.354653023162 Btu/hr'}, {'id': 'Unit 218 MiscEqp1', 'baseline_power': '6409.447130010162 Btu/hr', 'proposed_power': '5989.780948878544 Btu/hr'}, {'id': 'Units 247-248 MiscEqp1', 'baseline_power': '8415.403205896182 Btu/hr', 'proposed_power': '7864.39466265298 Btu/hr'}, {'id': 'Units 212-216 MiscEqp1', 'baseline_power': '12695.216645182816 Btu/hr', 'proposed_power': '11863.982221986324 Btu/hr'}, {'id': 'Units 241-246 MiscEqp1', 'baseline_power': '23912.283095494462 Btu/hr', 'proposed_power': '22346.59789281328 Btu/hr'}, {'id': 'Units 205-209 MiscEqp1', 'baseline_power': '15521.115891478748 Btu/hr', 'proposed_power': '14504.852350965259 Btu/hr'}, {'id': 'Unit 203 MiscEqp1', 'baseline_power': '7834.011449629214 Btu/hr', 'proposed_power': '7321.070223760636 Btu/hr'}, {'id': 'Units 220-229 MiscEqp1', 'baseline_power': '27739.993263675107 Btu/hr', 'proposed_power': '25923.68418093448 Btu/hr'}, {'id': 'Units 231-239 MiscEqp1', 'baseline_power': '31909.27691421119 Btu/hr', 'proposed_power': '29819.979021018793 Btu/hr'}, {'id': 'Units 313-317 MiscEqp1', 'baseline_power': '14007.826102121593 Btu/hr', 'proposed_power': '13090.647012101728 Btu/hr'}, {'id': 'Unit 318 MiscEqp1', 'baseline_power': '6367.979542318134 Btu/hr', 'proposed_power': '5951.028500856828 Btu/hr'}, {'id': 'Units 310-311 MiscEqp1', 'baseline_power': '12942.721490423259 Btu/hr', 'proposed_power': '12095.281392836021 Btu/hr'}, {'id': 'Unit 350 MiscEqp1', 'baseline_power': '5791.727453329492 Btu/hr', 'proposed_power': '5412.50720340911 Btu/hr'}, {'id': 'Units 347-348 MiscEqp1', 'baseline_power': '8381.224934411066 Btu/hr', 'proposed_power': '7832.454254181771 Btu/hr'}, {'id': 'Units 342-346 MiscEqp1', 'baseline_power': '24186.105949257675 Btu/hr', 'proposed_power': '22602.491869246758 Btu/hr'}, {'id': 'Units 312-316 MiscEqp1', 'baseline_power': '12670.896950304063 Btu/hr', 'proposed_power': '11841.254888081774 Btu/hr'}, {'id': 'Units 308-349 MiscEqp1', 'baseline_power': '31217.405814288537 Btu/hr', 'proposed_power': '29173.409005019643 Btu/hr'}, {'id': 'Units 303 MiscEqp1', 'baseline_power': '7847.099658785886 Btu/hr', 'proposed_power': '7333.301466841572 Btu/hr'}, {'id': 'Units 305-309 MiscEqp1', 'baseline_power': '14682.688606481554 Btu/hr', 'proposed_power': '13721.322090580978 Btu/hr'}, {'id': 'Units 413-417 MiscEqp1', 'baseline_power': '14007.826102121593 Btu/hr', 'proposed_power': '13090.647012101728 Btu/hr'}, {'id': 'Unit 418 MiscEqp1', 'baseline_power': '6367.979542318134 Btu/hr', 'proposed_power': '5951.028500856828 Btu/hr'}, {'id': 'Unit 410-411 MiscEqp1', 'baseline_power': '12942.721490423259 Btu/hr', 'proposed_power': '12095.281392836021 Btu/hr'}, {'id': 'Unit 450 MiscEqp1', 'baseline_power': '5791.727453329492 Btu/hr', 'proposed_power': '5412.50720340911 Btu/hr'}, {'id': 'Units 447-448 MiscEqp1', 'baseline_power': '8381.224934411066 Btu/hr', 'proposed_power': '7832.454254181771 Btu/hr'}, {'id': 'Units 442-446 MiscEqp1', 'baseline_power': '24186.105949257675 Btu/hr', 'proposed_power': '22602.491869246758 Btu/hr'}, {'id': 'Units 412-416 MiscEqp1', 'baseline_power': '12670.896950304063 Btu/hr', 'proposed_power': '11841.254888081774 Btu/hr'}, {'id': 'Units 408-449 MiscEqp1', 'baseline_power': '31217.405814288537 Btu/hr', 'proposed_power': '29173.409005019643 Btu/hr'}, {'id': 'Unit 403 MiscEqp1', 'baseline_power': '7847.099658785886 Btu/hr', 'proposed_power': '7333.301466841572 Btu/hr'}, {'id': 'Units 404-409 MiscEqp1', 'baseline_power': '14682.688606481554 Btu/hr', 'proposed_power': '13721.322090580978 Btu/hr'}, {'id': 'Units 513-517 MiscEqp1', 'baseline_power': '14007.826102121593 Btu/hr', 'proposed_power': '13090.647012101728 Btu/hr'}, {'id': 'Unit 518 MiscEqp1', 'baseline_power': '6367.979542318134 Btu/hr', 'proposed_power': '5951.028500856828 Btu/hr'}, {'id': 'Units 510-511 MiscEqp1', 'baseline_power': '12942.721490423259 Btu/hr', 'proposed_power': '12095.281392836021 Btu/hr'}, {'id': 'Unit 550 MiscEqp1', 'baseline_power': '5791.727453329492 Btu/hr', 'proposed_power': '5412.50720340911 Btu/hr'}, {'id': 'Units 547-548 MiscEqp1', 'baseline_power': '8381.224934411066 Btu/hr', 'proposed_power': '7832.454254181771 Btu/hr'}, {'id': 'Units 542-546 MiscEqp1', 'baseline_power': '24186.105949257675 Btu/hr', 'proposed_power': '22602.491869246758 Btu/hr'}, {'id': 'Units 512-516 MiscEqp1', 'baseline_power': '12670.896950304063 Btu/hr', 'proposed_power': '11841.254888081774 Btu/hr'}, {'id': 'Units 508-549 MiscEqp1', 'baseline_power': '31217.405814288537 Btu/hr', 'proposed_power': '29173.409005019643 Btu/hr'}, {'id': 'Unit 503 MiscEqp1', 'baseline_power': '7847.099658785886 Btu/hr', 'proposed_power': '7333.301466841572 Btu/hr'}, {'id': 'Units 504-509 MiscEqp1', 'baseline_power': '14682.688606481554 Btu/hr', 'proposed_power': '13721.322090580978 Btu/hr'}, {'id': 'Unit 340 MiscEqp1', 'baseline_power': '5604.63519509865 Btu/hr', 'proposed_power': '5237.66503351481 Btu/hr'}, {'id': 'Units 320-330 MiscEqp1', 'baseline_power': '27720.48419647868 Btu/hr', 'proposed_power': '25905.45249313781 Btu/hr'}, {'id': 'Units 319-327 MiscEqp1', 'baseline_power': '17854.064524347526 Btu/hr', 'proposed_power': '16685.04839477715 Btu/hr'}, {'id': 'Units 331-339 MiscEqp1', 'baseline_power': '31847.18014892101 Btu/hr', 'proposed_power': '29761.948115360705 Btu/hr'}, {'id': 'Unit 440 MiscEqp1', 'baseline_power': '5604.63519509865 Btu/hr', 'proposed_power': '5237.66503351481 Btu/hr'}, {'id': 'Units 420-430 MiscEqp1', 'baseline_power': '27720.48419647868 Btu/hr', 'proposed_power': '25905.45249313781 Btu/hr'}, {'id': 'Units 419-427 MiscEqp1', 'baseline_power': '17854.064524347526 Btu/hr', 'proposed_power': '16685.04839477715 Btu/hr'}, {'id': 'Units 431-439 MiscEqp1', 'baseline_power': '31847.18014892101 Btu/hr', 'proposed_power': '29761.948115360705 Btu/hr'}, {'id': 'Unit 540 MiscEqp1', 'baseline_power': '5604.63519509865 Btu/hr', 'proposed_power': '5237.66503351481 Btu/hr'}, {'id': 'Units 520-530 MiscEqp1', 'baseline_power': '27720.48419647868 Btu/hr', 'proposed_power': '25905.45249313781 Btu/hr'}, {'id': 'Units 519-527 MiscEqp1', 'baseline_power': '17854.064524347526 Btu/hr', 'proposed_power': '16685.04839477715 Btu/hr'}, {'id': 'Units 531-539 MiscEqp1', 'baseline_power': '31847.18014892101 Btu/hr', 'proposed_power': '29761.948115360705 Btu/hr'}, {'id': 'Units 219-227 MiscEqp1', 'baseline_power': '17854.064524347526 Btu/hr', 'proposed_power': '16685.04839477715 Btu/hr'}, {'id': 'L1 Elevator 3 MiscEqp1', 'baseline_power': '25027.372954610946 Btu/hr', 'proposed_power': '13947.126977146241 Btu/hr'}, {'id': 'L1 Elev 1-2 MiscEqp1', 'baseline_power': '25010.9946770598 Btu/hr', 'proposed_power': '13947.126977146241 Btu/hr'}, {'id': 'L1 Elev 4 MiscEqp1', 'baseline_power': '25010.9946770598 Btu/hr', 'proposed_power': '13947.126977146241 Btu/hr'}, {'id': 'Unit 240 MiscEqp1', 'baseline_power': '5626.543270499386 Btu/hr', 'proposed_power': '5258.138651597641 Btu/hr'}]" + }, + { + "variable": "unexpected_misc_equipment_power", + "value": "[]" + }, + { + "variable": "compliance_path", + "value": "None" + } + ], + "messages": "The proposed building miscellaneous equipment load is less than the baseline, which is only permitted when the model is being used to quantify performance that exceeds the requirements of Standard 90.1." + } + }, + "12-2": { + "Units B105-B113 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit B-114 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units B101-B104 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 135 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 129-134 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 111-113 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units B104 - 115 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 114-120 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 128 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units B105 - 128 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 201 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 202-208 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 210-211 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 213-217 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 218 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 247-248 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 212-216 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 241-246 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 205-209 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 203 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 220-229 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 231-239 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2-2 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 313-317 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 318 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 310-311 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 350 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 347-348 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 342-346 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 312-316 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 308-349 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 303 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 305-309 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 413-417 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 418 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 410-411 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 450 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 447-448 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 442-446 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 412-416 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 408-449 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 403 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 404-409 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 513-517 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 518 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 510-511 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 550 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 547-548 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 542-546 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 512-516 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 508-549 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 503 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 504-509 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 340 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 320-330 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 319-327 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 331-339 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 440 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 420-430 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 419-427 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 431-439 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 540 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 520-530 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 519-527 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 531-539 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "B-Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Retail MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "SALES_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Lobby/Leasing/Amenities MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "IDF MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Corridor 1 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1-2 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Units 219-227 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3 Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4 Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5 Corridor 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3-2 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4-2 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5-2 Corridor MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Main entrance MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 - Storage 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Mech 2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Elec/Meter Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Mech MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Gas Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "B-Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 - Storage MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_LARGE" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Water Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Main Electrical Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Trash compactor rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2-2 Stair B MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "B-Stair B MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "B-Elevator 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1-Stair A MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Elevator 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Loading MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "WAREHOUSE_STORAGE_AREA_MEDIUM_TO_BULKY_PALLETIZED_ITEMS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Elev 1-2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1 Elev 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L1-2 Stair B MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Elev 1-2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Shaft MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Elevator 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Stair A MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L2 Elev 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3 Stair A MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3 Elev 1-2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3 Elev 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3 Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3 Elev 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4 Stair A MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4 Elev 1-2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4 Elev 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4 Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4 Elev 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5 Stair A MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5 Elev 1-2 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5 Elev 3 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5 Stairs MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5 Elev 4 MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L3-2 Stair B MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L4-2 Stair B MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "L5-2 Stair B MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Outdoor Mech Rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Pool equip. rm MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "Unit 240 MiscEqp1": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DWELLING_UNIT" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "365" + }, + { + "variable": "eflh_difference", + "value": "1168.0000000001596" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "The proposed miscellaneous equipment schedule has reduced equivalent full load hours compared the baseline but it could not be determined if automatic receptacle controls are present in the proposed design to justify the credit." + } + }, + "12-3": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "spaces:Units B105-B113 is missing lighting_space_type" + } + }, + "12-4": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-1": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-2": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-3": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-4": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-5": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-6": { + "Sample 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-7": { + "Sample 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "18-1": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "18-2": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "18-3": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "target_baseline_systems_b", + "value": "{'Units B105-B113 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit B-114 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units B101-B104 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 135 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 129-134 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Lobby/Leasing/Amenities 2 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 111-113 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 104 - 115 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 114-120 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 128 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units B105 - 128 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 201 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 202-208 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 210-211 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 213-217 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 218 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 247-248 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 212-216 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 241-246 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 205-209 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 203 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 220-229 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 231-239 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L2-2 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 313-317 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 318 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 310-311 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 350 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 347-348 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 342-346 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 312-316 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 308-349 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 303 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 305-309 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 413-417 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 418 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 410-411 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 450 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 447-448 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 442-446 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 412-416 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 408-449 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 403 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 404-409 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 513-517 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 518 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 510-511 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 550 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 547-548 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 542-546 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 512-516 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 508-549 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 503 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 504-509 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 340 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 320-330 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 319-327 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 331-339 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 440 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 420-430 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 419-427 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 431-439 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 540 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 520-530 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 519-527 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 531-539 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'B-Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Retail zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Lobby/Leasing/Amenities zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'IDF zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L1 Corridor 1 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L1 Corridor 2 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L1-2 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L2 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L2 Corridor 2 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Units 219-227 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L3 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L3 Corridor 2 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L4 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L4 Corridor 2 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L5 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L5 Corridor 2 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L3-2 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L4-2 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L5-2 Corridor zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Main entrance zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L1 - Storage 2 zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'L1 Elec/Meter Rm zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'Gas Rm zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'B-Storage zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'L1 - Storage zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'Water Rm zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'L1 Main Electrical Rm zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'Trash compactor rm zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'B-Elevator 4 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'L1-Stair A zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'Loading zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'L2 Stairs zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'L3 Stairs zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'L4 Stairs zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'L5 Stairs zn': {'system_origin': 'G3_1_1e', 'expected_system_type': 'Sys-9'}, 'Outdoor Mech Rm zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Pool equip. rm zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}, 'Unit 240 zn': {'expected_system_type': 'Sys-1', 'system_origin': 'RESIDENTIAL CZ_3b_3c_or_4_to_8'}}" + } + ], + "messages": "" + } + }, + "19-1": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Lobby PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "B-Corridor sys": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Retail PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "IDF PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "Main entr PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + } + }, + "19-2": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_sized_using_coincident_load", + "value": "True" + } + ], + "messages": "" + } + }, + "19-3": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-4": { + "Units B105-B113 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit B-114 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units B101-B104 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 135 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 129-134 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Lobby/Leasing/Amenities 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 111-113 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 104 - 115 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 114-120 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 128 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units B105 - 128 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 201 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 202-208 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 210-211 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 213-217 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 218 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 247-248 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 212-216 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 241-246 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 205-209 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 203 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 220-229 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 231-239 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 313-317 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 318 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 310-311 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 350 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 347-348 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 342-346 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 312-316 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 308-349 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 303 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 305-309 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 413-417 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 418 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 410-411 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 450 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 447-448 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 442-446 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 412-416 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 408-449 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 403 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 404-409 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 513-517 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 518 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 510-511 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 550 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 547-548 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 542-546 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 512-516 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 508-549 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 503 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 504-509 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 340 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 320-330 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 319-327 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 331-339 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 440 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 420-430 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 419-427 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 431-439 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 540 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 520-530 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 519-527 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 531-539 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "B-Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Retail zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Lobby/Leasing/Amenities zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "IDF zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Corridor 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Units 219-227 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Main entrance zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Elec/Meter Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Gas Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "B-Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Water Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Main Electrical Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Trash compactor rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "B-Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "B-Elevator 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1-Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Elevator 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Loading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L1-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Shaft zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Elevator 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L2 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L3-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L4-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "L5-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Outdoor Mech Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Pool equip. rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + }, + "Unit 240 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:Always On Ann is missing hourly_cooling_design_day" + } + }, + "19-5": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "unmet_load_hours_heating_p", + "value": "72.0", + "unit": "hr" + }, + { + "variable": "unmet_load_hours_cooling_p", + "value": "0.0", + "unit": "hr" + }, + { + "variable": "coincident_unmet_load_hours_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-6": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:Sample 4-BL Output missing:unmet_load_hours" + } + } + }, + "19-7": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "zones:Units B105-B113 zn is missing air_distribution_effectiveness" + } + }, + "19-8": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "603.7034440814386", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631585316941369", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "105.46894607159629", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631552407082983", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "295.73244857867394", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315769395922417", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "78.97606745973462", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315216651928433", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "501.55400452224785", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631569702064768", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Lobby PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "948.9734110439167", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000015623146628", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "237.4625521375256", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315726366940697", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "459.2834368739386", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315740223914568", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "337.41798162377745", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315791149617604", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "104.49096687901329", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6316070890207697", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "594.2300597462454", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631572333505446", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "87.49671281854717", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631534352759205", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "424.59841226856224", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.63158174419748", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "241.7660661031914", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631570526978942", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "262.36425507951935", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631568278324096", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "120.13315684665304", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631585066720662", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "157.7310755123508", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315993827427073", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "237.94822211452265", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315746696217848", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "448.19124947612363", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315687274684474", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "290.91446569035907", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631579433327541", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "146.83396962391728", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631601091890543", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "519.9345662741507", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631571823471634", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "598.0800833339345", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315730379366276", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "157.40277565597353", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999898182022855", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "262.5506559644127", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315827165753167", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "119.35592899903531", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6316180346042373", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "242.58724124889704", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315648443381288", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "108.55515661557003", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631563319641707", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "157.0904637551212", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631592806496332", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "453.32356710750173", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315678452277558", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "237.49240143370662", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631558589072363", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "585.112190652042", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.63157624126811", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "147.07928125404214", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631594903279171", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "275.19966944504995", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315786391430804", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "262.5506517364629", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315827165753167", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "119.3559336659946", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6316180346042373", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "242.58723144637406", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315648443381288", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "108.55516000165426", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631563319641707", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "157.09047612273935", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631592806496332", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "453.3235622445645", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315678452277558", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "237.4924129375122", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631558589072363", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "585.1121595271761", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.63157624126811", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "147.07927890681276", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631594903279171", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "275.1996687243718", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315786391430804", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "262.550653397675", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315827165753167", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "119.35593389131738", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6316180346042373", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "242.58722585100622", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315648443381288", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "108.55515693662483", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631563319641707", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "157.09047261831802", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631592806496332", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "453.3235810546321", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315678452277558", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "237.49239412151837", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631558589072363", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "585.1121791717451", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.63157624126811", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "147.0792807379912", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631594903279171", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "275.1996793628932", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315786391430804", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "105.04846421334332", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631551224220049", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "519.5689059473807", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631583409739834", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "334.6412376729313", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315826650162832", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "596.916127990291", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315742579726837", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "105.04846001834812", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631551224220049", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "519.5688984845401", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631583409739834", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "334.6412371795086", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315826650162832", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "596.9161339423954", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315742579726837", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "105.04845930839839", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631551224220049", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "519.5689266641057", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.631583409739834", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "334.64123430232576", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315826650162832", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "596.9161424334161", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315742579726837", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "B-Corridor sys": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "149.8361996763706", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000129793776917", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Retail PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "1053.924298213824", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "14.99924357594039", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "1894.679354823893", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999955457438858", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "IDF PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "50.00066956812855", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "80.75442446495346", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000246772850345", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "106.53384749566158", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000273825741126", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "163.52409561513377", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999972103003344", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "106.51690351199068", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000174126778154", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "122.2496325886732", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000117839067186", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "334.64124255369825", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "2.6315826650162832", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "243.88988240203798", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999805722088042", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "125.85709844585472", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000112553727711", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "136.25134913403602", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999805722088042", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "125.85710277442558", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000112553727711", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "136.25134200820867", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999805722088042", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "125.85709813652647", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000112553727711", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "151.9860960357355", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000006042451897", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "151.98609619485796", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000006042451897", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "151.9860947871848", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000006042451897", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Main entr PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "46.11221207771359", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "14.999054236390458", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "3.80604934518351", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.00028298604135", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "105.45909455909714", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999652584663129", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "1.2641748927978966", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9996640913671481", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "13.447167601598494", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.00028070888038", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.4965834051374145", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9997870439768015", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "45.33308408283301", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999593407799425", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "24.963486694265157", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000340209696912", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "6.91171801997757", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9997348208007673", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "11.463953570992658", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999734520322467", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "13.742454736234777", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999296166046564", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "38.92634545914325", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999143636339678", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000053081373746", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "2.5074214874149163", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000125784405529", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "6.7640938736713", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999537936043239", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "10.142261643209963", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0001211183980891", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9997350525479111", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "7.971854233556428", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9998713386429677", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999860337146128", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "19.847042695833807", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000052424914416", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "4.6312114554356185", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.999977801215564", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000198437358025", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "11.976430916456025", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999216008312969", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000198437358025", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "12.002577352807862", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999216008312969", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "3.9614508874472563", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000198437358025", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "20.509871760826172", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999216008312969", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000053081373746", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000053081373746", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "3.755055522384964", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000053081373746", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "43.3985786692956", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9998196299566159", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "34.675434100269285", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999999999999999", + "unit": "people/kft2" + } + ], + "messages": "" + } + }, + "19-9": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-10": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-11": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-12": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "65.0", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-13": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-14": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-15": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-16": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-17": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-18": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-19": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-20": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Terminals connected with HVAC S3 Sys (UHT) - L2-2 Stair B zn have 0.0 total air flow. Check inputs!" + } + }, + "19-21": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-22": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-23": { + "Units B105-B113 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit B-114 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units B101-B104 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 135 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 129-134 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Lobby/Leasing/Amenities 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 111-113 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 104 - 115 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 114-120 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 128 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units B105 - 128 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 201 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 202-208 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 210-211 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 213-217 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 218 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 247-248 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 212-216 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 241-246 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 205-209 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 203 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 220-229 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 231-239 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 313-317 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 318 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 310-311 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 350 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 347-348 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 342-346 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 312-316 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 308-349 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 303 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 305-309 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 413-417 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 418 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 410-411 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 450 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 447-448 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 442-446 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 412-416 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 408-449 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 403 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 404-409 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 513-517 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 518 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 510-511 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 550 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 547-548 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 542-546 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 512-516 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 508-549 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 503 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 504-509 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 340 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 320-330 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 319-327 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 331-339 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 440 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 420-430 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 419-427 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 431-439 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 540 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 520-530 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 519-527 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 531-539 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "B-Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Retail zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Lobby/Leasing/Amenities zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "IDF zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Corridor 1 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Units 219-227 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5 Corridor 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5-2 Corridor zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Main entrance zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 - Storage 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Mech 2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Elec/Meter Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Mech zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Gas Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "B-Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Water Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Main Electrical Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Trash compactor rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "B-Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "B-Elevator 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1-Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Elevator 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Loading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L1-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Shaft zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Elevator 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L2 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5 Stair A zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5 Elev 1-2 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5 Elev 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5 Stairs zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5 Elev 4 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L3-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L4-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "L5-2 Stair B zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Outdoor Mech Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Pool equip. rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "Unit 240 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + } + }, + "19-24": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "726.6700518307334", + "unit": "cfm" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "126.95161829688004", + "unit": "cfm" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "355.9693892905634", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "95.06248856753155", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "603.7141237358155", + "unit": "cfm" + } + ], + "messages": "" + }, + "Lobby PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "948.9733520645095", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "285.83064372056833", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "552.8336114001577", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "406.1457440940012", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "125.77443099724407", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "715.2671368240481", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "105.31866933634046", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "511.0836595915316", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "291.0107149774358", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "315.80450326194114", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "144.60273587310166", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "189.85888461192917", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "286.4152273731306", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "539.482043117634", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "350.17000251086574", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "176.74217791442788", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "625.838559713462", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "719.901338426862", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "157.40277403036634", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "316.0288259625959", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "143.66720822748175", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "291.99914807765526", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "130.66645457954655", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "189.0877797848898", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "545.6598038506345", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "285.86655503050133", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "704.292085674504", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "177.03744670009837", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "331.2543185254908", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "316.0288259625959", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "143.66720822748175", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "291.99914807765526", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "130.66645457954655", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "189.0877797848898", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "545.6598038506345", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "285.86655503050133", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "704.292085674504", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "177.03744670009837", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "331.2543185254908", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "316.0288259625959", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "143.66720822748175", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "291.99914807765526", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "130.66645457954655", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "189.0877797848898", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "545.6598038506345", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "285.86655503050133", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "704.292085674504", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "177.03744670009837", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "331.2543185254908", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "126.44549096432456", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "625.3984113560145", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "402.80334337979", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "718.5003412154038", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "126.44549096432456", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "625.3984113560145", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "402.80334337979", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "718.5003412154038", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "126.44549096432456", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "625.3984113560145", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "402.80334337979", + "unit": "cfm" + } + ], + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "718.5003412154038", + "unit": "cfm" + } + ], + "messages": "" + }, + "B-Corridor sys": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "149.83619426009136", + "unit": "cfm" + } + ], + "messages": "" + }, + "Retail PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1053.924332235969", + "unit": "cfm" + } + ], + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1894.6792380499828", + "unit": "cfm" + } + ], + "messages": "" + }, + "IDF PSZ": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "80.75442265500624", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "106.53384064557031", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "163.5240985772789", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "106.51689420495859", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "122.24963097858017", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "402.80334337979", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "136.25133833543077", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "125.85710005165674", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "136.25133833543077", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "125.85710332817143", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "136.25133833543077", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "125.85710005165674", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "151.9861024805541", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "151.9861024805541", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "151.9861024805541", + "unit": "cfm" + } + ], + "messages": "" + }, + "Main entr PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "46.1122129059886", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1.29202346184195", + "unit": "cfm" + } + ], + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "126.93976413645215", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH-B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "52.9562481260582", + "unit": "cfm" + } + ], + "messages": "" + }, + "ECUH-A": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "18.676954241328076", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS-B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1347.540771484375", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS-1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "2343.940673828125", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "4564.83203125", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS-3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "4759.91015625", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS-4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "4759.91015625", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS-5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "4759.91015625", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.044801354272061555", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.25496066357433556", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "2.4381128142362627", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.6359048944171519", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1.5796705995335572", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1.7742483540317266", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "4.302019404101259", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.9423047353638836", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "2.365746678170524", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "2.3689190207978186", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.7545157013010098", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "3.7577885455912394", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.7300688603470817", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "9.368409294692924", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "7.758366786469708", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH-B - Water Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "52.9562481260582", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH-B - L1 Main Electrical Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "52.9562481260582", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH-B - Trash compactor rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "52.9562481260582", + "unit": "cfm" + } + ], + "messages": "" + }, + "EUH-B - Loading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "52.9562481260582", + "unit": "cfm" + } + ], + "messages": "" + }, + "ECUH-A - L1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "18.676954241328076", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-25": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "603.7034440814386", + "unit": "cfm" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "105.46894607159629", + "unit": "cfm" + } + ], + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "295.73244857867394", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "78.97606745973462", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "501.55400452224785", + "unit": "cfm" + } + ], + "messages": "" + }, + "Lobby PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "948.9734110439167", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "237.4625521375256", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "459.2834368739386", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "337.41798162377745", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "104.49096687901329", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "594.2300597462454", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "87.49671281854717", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "424.59841226856224", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "241.7660661031914", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "262.36425507951935", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "120.13315684665304", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "157.7310755123508", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "237.94822211452265", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "448.19124947612363", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "290.91446569035907", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "146.83396962391728", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "519.9345662741507", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "598.0800833339345", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "157.40277565597353", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "262.5506559644127", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "119.35592899903531", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "242.58724124889704", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "108.55515661557003", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "157.0904637551212", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "453.32356710750173", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "237.49240143370662", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "585.112190652042", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "147.07928125404214", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "275.19966944504995", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "262.5506517364629", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "119.3559336659946", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "242.58723144637406", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "108.55516000165426", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "157.09047612273935", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "453.3235622445645", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "237.4924129375122", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "585.1121595271761", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "147.07927890681276", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "275.1996687243718", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "262.550653397675", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "119.35593389131738", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "242.58722585100622", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "108.55515693662483", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "157.09047261831802", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "453.3235810546321", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "237.49239412151837", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "585.1121791717451", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "147.0792807379912", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "275.1996793628932", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "105.04846421334332", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "519.5689059473807", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "334.6412376729313", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "596.916127990291", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "105.04846001834812", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "519.5688984845401", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "334.6412371795086", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "596.9161339423954", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "105.04845930839839", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "519.5689266641057", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "334.64123430232576", + "unit": "cfm" + } + ], + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "596.9161424334161", + "unit": "cfm" + } + ], + "messages": "" + }, + "B-Corridor sys": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "149.8361996763706", + "unit": "cfm" + } + ], + "messages": "" + }, + "Retail PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "1053.924298213824", + "unit": "cfm" + } + ], + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "1894.679354823893", + "unit": "cfm" + } + ], + "messages": "" + }, + "IDF PSZ": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "80.75442446495346", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "106.53384749566158", + "unit": "cfm" + } + ], + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "163.52409561513377", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "106.51690351199068", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "122.2496325886732", + "unit": "cfm" + } + ], + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "334.64124255369825", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "243.88988240203798", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "125.85709844585472", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "136.25134913403602", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "125.85710277442558", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "136.25134200820867", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "125.85709813652647", + "unit": "cfm" + } + ], + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "151.9860960357355", + "unit": "cfm" + } + ], + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "151.98609619485796", + "unit": "cfm" + } + ], + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "151.9860947871848", + "unit": "cfm" + } + ], + "messages": "" + }, + "Main entr PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "46.11221207771359", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "3.80604934518351", + "unit": "cfm" + } + ], + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "105.45909455909714", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "1.2641748927978966", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "13.447167601598494", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.4965834051374145", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "45.33308408283301", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "24.963486694265157", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "6.91171801997757", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "11.463953570992658", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "13.742454736234777", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "38.92634545914325", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "2.5074214874149163", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "6.7640938736713", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "10.142261643209963", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "7.971854233556428", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "19.847042695833807", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "4.6312114554356185", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "11.976430916456025", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "12.002577352807862", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "3.9614508874472563", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "20.509871760826172", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "3.755055522384964", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "43.3985786692956", + "unit": "cfm" + } + ], + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "34.675434100269285", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-26": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-27": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-28": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "IDF PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-29": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "IDF PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-30": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "19-31": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-32": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-33": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-3": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS-5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "EUH-B - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ECUH-A - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-34": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-35": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-36": { + "BSys1 (PSZ) (B.C1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BSys1 (PSZ) (B.C8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.W5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1Sys1 (PSZ) (G.WSW20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.NW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NNE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.N2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.WSW12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.S15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2Sys1 (PSZ) (G.SSE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys1 (PSZ) (G.SSE5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NE3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.NW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.ENE13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.WSW14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.N15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.SSE16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (G.S17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SE19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NE20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.NW22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.ENE30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.WSW31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.N32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.SSE33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (M.S34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SE36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NE37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.NW39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.ENE47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.WSW48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.N49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.SSE50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3Sys1 (PSZ) (T.S51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSW1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SE2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.NNW5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (G.SSE6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSW7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SE8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.NNW11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (M.SSE12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SSW13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.SE14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2Sys1 (PSZ) (T.NNW17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "LAST APT ZONE": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "B-Corridor sys": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Retail PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Lobby PSZ 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "IDF PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 1 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L1-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L2-2Sys2 (PSZ) (G.NNW3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5 Corridor 2 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L3-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L4-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "L5-2 Corridor PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Main entr PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "Unit 240 PSZ": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech 2 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elec/Meter Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Mech zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Gas Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 - Storage zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Water Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Main Electrical Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Trash compactor rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - B-Elevator 4 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1 Elevator 3 zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Loading zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L1-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L2 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stair A zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5 Stairs zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L3-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L4-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - L5-2 Stair B zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Outdoor Mech Rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S3 Sys (UHT) - Pool equip. rm zn": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-37": { + "Sample 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "21-1": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-1 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-2": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-2 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-3": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-4": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-5": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-6": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-7": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-8": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "temperature_reset_type_b", + "value": "OUTSIDE_AIR_RESET" + }, + { + "variable": "design_outdoor_high_for_loop_supply_reset_temperature_b", + "value": "50.000000000000036", + "unit": "F" + }, + { + "variable": "design_outdoor_low_for_loop_supply_reset_temperature_b", + "value": "20.000000000000004", + "unit": "F" + }, + { + "variable": "design_supply_temperature_at_outdoor_high_b", + "value": "150.0", + "unit": "F" + }, + { + "variable": "design_supply_temperature_at_outdoor_low_b", + "value": "180.00000000000006", + "unit": "F" + }, + { + "variable": "required_outdoor_high_for_loop_supply_reset_temperature_b", + "value": "50", + "unit": "F" + }, + { + "variable": "required_outdoor_low_for_loop_supply_reset_temperature_b", + "value": "20", + "unit": "F" + }, + { + "variable": "required_supply_temperature_at_outdoor_high_b", + "value": "150", + "unit": "F" + }, + { + "variable": "required_supply_temperature_at_outdoor_low_b", + "value": "180", + "unit": "F" + } + ], + "messages": "" + } + }, + "21-9": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-10": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-11": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-12": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-13": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-14": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-15": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-16": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-17": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "21-18": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-1": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-2": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-3": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-4": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-5": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-6": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-7": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-8": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-9": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-10": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-11": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-12": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-13": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-14": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-15": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-16": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-17": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-18": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-19": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-20": { + "Sample 4": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-21": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-22": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-23": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-24": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-25": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-26": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-27": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-28": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-29": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-30": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-31": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-32": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-33": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-34": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-35": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-35 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-36": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "22-37": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-37 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-38": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-38 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-39": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-39 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-40": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-41": { + "Sample 4-BL": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "23-1": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-2": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-3": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-4": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-5": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-6": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-7": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-8": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-9": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-10": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-11": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-12": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-13": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-14": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-15": { + "Sample 4-PR - 16 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-16": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + }, + "23-17": { + "Sample 4-BL": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC Lobby PSZ does not match any baseline system type." + } + } +} \ No newline at end of file diff --git a/test/integrated_tests/Sample 4/tmp2i_g18fc.html b/test/integrated_tests/Sample 4/tmp2i_g18fc.html new file mode 100644 index 0000000000..8c10a635d8 --- /dev/null +++ b/test/integrated_tests/Sample 4/tmp2i_g18fc.html @@ -0,0 +1,22 @@ + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/test/integrated_tests/Sample 5/Sample 5.zip b/test/integrated_tests/Sample 5/Sample 5.zip new file mode 100644 index 0000000000..d1171f549f Binary files /dev/null and b/test/integrated_tests/Sample 5/Sample 5.zip differ diff --git a/test/integrated_tests/Sample 5/expected_outcomes.json b/test/integrated_tests/Sample 5/expected_outcomes.json new file mode 100644 index 0000000000..bb78d91694 --- /dev/null +++ b/test/integrated_tests/Sample 5/expected_outcomes.json @@ -0,0 +1,77643 @@ +{ + "1-1": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `output_bpf_set` value must exist." + } + }, + "1-2": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index` value must exist." + } + }, + "1-3": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `performance_cost_index_target` value must exist." + } + }, + "1-4": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "At least one `pci_target_set` value must exist." + } + }, + "1-5": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Ruleset expects exactly one PBP value to be used in the project." + } + }, + "1-6": { + "Sample 5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_renewable", + "value": "False" + } + ], + "messages": "" + } + }, + "1-7": { + "Sample 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object [BL] Sample 5 in index context does not match the one [PR] Sample 5 - 17 - Proposed in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].terminals[0]: data object 100 WAITING ZN MainTerminal in index context does not match the one 100 WAITING ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].terminals[0]: data object 101 MAIN OFF 01 ZN MainTerminal in index context does not match the one 101 MAIN OFF 01 ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].terminals[0]: data object 101A OFFICE ZN MainTerminal in index context does not match the one 101A OFFICE ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[9].terminals[0]: data object 101C CONF RM ZN MainTerminal in index context does not match the one 101C CONF RM ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11].terminals[0]: data object 102, 102A, 103A, 140A OFF ZN MainTerminal in index context does not match the one 102, 102A, 103A, 140A OFF ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[13].terminals[0]: data object 103 MEDIA ZN MainTerminal in index context does not match the one 103 MEDIA ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].terminals[0]: data object 103D WORK RM ZN MainTerminal in index context does not match the one 103D WORK RM ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[17].terminals[0]: data object 104B ELL/READING ZN MainTerminal in index context does not match the one 104B ELL/READING ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[19].terminals[0]: data object 104C ELL/READING ZN MainTerminal in index context does not match the one 104C ELL/READING ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[21].terminals[0]: data object 104D ELL/READING ZN MainTerminal in index context does not match the one 104D ELL/READING ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[23].terminals[0]: data object 110 ART CLASS ZN MainTerminal in index context does not match the one 110 ART CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[25].terminals[0]: data object 111 SCIENCE CLASS ZN MainTerminal in index context does not match the one 111 SCIENCE CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[29].terminals[0]: data object 112 & 114 1ST CLASS ZN MainTerminal in index context does not match the one 112 & 114 1ST CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[33].terminals[0]: data object 113 & 115 1ST CLASS ZN MainTerminal in index context does not match the one 113 & 115 1ST CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[35].terminals[0]: data object 116 RESOURCE ZN MainTerminal in index context does not match the one 116 RESOURCE ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[37].terminals[0]: data object 117 RESOURCE ZN MainTerminal in index context does not match the one 117 RESOURCE ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[39].terminals[0]: data object 118 & 120 2ND CLASS ZN MainTerminal in index context does not match the one 118 & 120 2ND CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[41].terminals[0]: data object 119 & 121 2ND CLASS ZN MainTerminal in index context does not match the one 119 & 121 2ND CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[47].terminals[0]: data object 124B KITCH OFF ZN MainTerminal in index context does not match the one 124B KITCH OFF ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[49].terminals[0]: data object 124C CUST OFF ZN MainTerminal in index context does not match the one 124C CUST OFF ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[51].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: C9 School ClgSpt', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[55].terminals[0]: data object 128A Faculty ZN MainTerminal in index context does not match the one 128A Faculty ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[59].terminals[0]: data object 135 Music ZN MainTerminal in index context does not match the one 135 Music ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[63].terminals[0]: data object 137 Pre-K ZN MainTerminal in index context does not match the one 137 Pre-K ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[67].terminals[0]: data object 139 Pre-K ZN MainTerminal in index context does not match the one 139 Pre-K ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].terminals[0]: data object 141 Kindergardten ZN MainTerminal in index context does not match the one 141 Kindergardten ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[72].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[74].terminals[0]: data object 143 & 144 Kindergarten ZN MainTerminal in index context does not match the one 143 & 144 Kindergarten ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[76].terminals[0]: data object 148 KINDERGARTEN ZN MainTerminal in index context does not match the one 148 KINDERGARTEN ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].terminals[0]: data object 1C-1 CORR ZN MainTerminal in index context does not match the one 1C-1 CORR ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[81].surfaces[16].area: index context data: 34.55974507392001 m2 does not equal to compare context data: 30.719412109440025 m2', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[82].terminals[0]: data object 1C-3 TO 7 CORR ZN MainTerminal in index context does not match the one 1C-3 TO 7 CORR ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[84].terminals[0]: data object 1C-8, 9 & 10 Corr ZN MainTerminal in index context does not match the one 1C-8, 9 & 10 Corr ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: UTILITY HTG', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[88].terminals[0]: data object 1V-3 MAIN LOBBY ZN MainTerminal in index context does not match the one 1V-3 MAIN LOBBY ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[90].terminals[0]: data object 200 RESOURCE ZN MainTerminal in index context does not match the one 200 RESOURCE ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[92].terminals[0]: data object 201 ELL/READING ZN MainTerminal in index context does not match the one 201 ELL/READING ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[94].terminals[0]: data object 204 & 206 3RD CLASS ZN MainTerminal in index context does not match the one 204 & 206 3RD CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[96].terminals[0]: data object 205 & 207 3RD CLASS ZN MainTerminal in index context does not match the one 205 & 207 3RD CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[98].terminals[0]: data object 208 RESOURCE ZN MainTerminal in index context does not match the one 208 RESOURCE ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[100].terminals[0]: data object 209 RESOURCE ZN MainTerminal in index context does not match the one 209 RESOURCE ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[102].terminals[0]: data object 210 & 212 4TH CLASS ZN MainTerminal in index context does not match the one 210 & 212 4TH CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[104].terminals[0]: data object 211 & 213 4TH CLASS ZN MainTerminal in index context does not match the one 211 & 213 4TH CLASS ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[108].terminals[0]: data object 216 COPY ZN MainTerminal in index context does not match the one 216 COPY ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[110].terminals[0]: data object 218 OFF ZN MainTerminal in index context does not match the one 218 OFF ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[112].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[114].terminals[0]: data object 2C-1 & 3 CORR ZN MainTerminal in index context does not match the one 2C-1 & 3 CORR ZN DOASTerminal in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object BL SYS 3 Cafe in index context does not match the one AC-1-1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object BL SYS 3 Cafe FanSys in index context does not match the one AC-1-1 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object BL SYS 3 Cafe SupplyFan in index context does not match the one AC-1-1 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].heating_system: data object BL SYS 3 Cafe HeatSys in index context does not match the one AC-1-1 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].cooling_system: data object BL SYS 3 Cafe CoolSys in index context does not match the one AC-1-1 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1]: data object BL SYS 3 KIT in index context does not match the one AC-2-1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system: data object BL SYS 3 KIT FanSys in index context does not match the one AC-2-1 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.supply_fans[0]: data object BL SYS 3 KIT SupplyFan in index context does not match the one AC-2-1 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].heating_system: data object BL SYS 3 KIT HeatSys in index context does not match the one AC-2-1 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].cooling_system: data object BL SYS 3 KIT CoolSys in index context does not match the one AC-2-1 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2]: data object BL SYS 5 FLOOR 1 in index context does not match the one DOAS 1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system: data object BL SYS 5 FLOOR 1 FanSys in index context does not match the one DOAS 1 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.supply_fans[0]: data object BL SYS 5 FLOOR 1 SupplyFan in index context does not match the one DOAS 1 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.return_fans[0]: data object BL SYS 5 FLOOR 1 ReturnFan in index context does not match the one DOAS 1 ReturnFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].heating_system: data object BL SYS 5 FLOOR 1 HeatSys in index context does not match the one DOAS 1 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].cooling_system: data object BL SYS 5 FLOOR 1 CoolSys in index context does not match the one DOAS 1 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3]: data object BL Sys 5 2nd flr in index context does not match the one DOAS 2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system: data object BL Sys 5 2nd flr FanSys in index context does not match the one DOAS 2 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.supply_fans[0]: data object BL Sys 5 2nd flr SupplyFan in index context does not match the one DOAS 2 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.return_fans[0]: data object BL Sys 5 2nd flr ReturnFan in index context does not match the one DOAS 2 ReturnFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].heating_system: data object BL Sys 5 2nd flr HeatSys in index context does not match the one DOAS 2 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].cooling_system: data object BL Sys 5 2nd flr CoolSys in index context does not match the one DOAS 2 CoolSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object S2 Sys (UHT) in index context does not match the one RTU-1-GYM in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object S2 Sys (UHT) FanSys in index context does not match the one RTU-1-GYM FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan in index context does not match the one RTU-1-GYM SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].heating_system: data object S2 Sys (UHT) HeatSys in index context does not match the one RTU-1-GYM HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5]: data object S2 Sys (UHT) - 1-V4 Vest ZN in index context does not match the one RTU-2 CAF\u00c9 01 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system: data object S2 Sys (UHT) FanSys--9 in index context does not match the one RTU-2 CAF\u00c9 01 FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--9 in index context does not match the one RTU-2 CAF\u00c9 01 SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].heating_system: data object S2 Sys (UHT) HeatSys--9 in index context does not match the one RTU-2 CAF\u00c9 01 HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6]: data object S2 Sys (UHT) - 111A STOR ZN in index context does not match the one S2 Sys (UHT) in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system: data object S2 Sys (UHT) FanSys--7 in index context does not match the one S2 Sys (UHT) FanSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--7 in index context does not match the one S2 Sys (UHT) SupplyFan in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].heating_system: data object S2 Sys (UHT) HeatSys--7 in index context does not match the one S2 Sys (UHT) HeatSys in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7]: data object S2 Sys (UHT) - 112A WATER ZN in index context does not match the one S2 Sys (UHT) - 1-V4 Vest ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system: data object S2 Sys (UHT) FanSys--3 in index context does not match the one S2 Sys (UHT) FanSys--9 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--3 in index context does not match the one S2 Sys (UHT) SupplyFan--9 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].heating_system: data object S2 Sys (UHT) HeatSys--3 in index context does not match the one S2 Sys (UHT) HeatSys--9 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8]: data object S2 Sys (UHT) - 122 ELEC ZN in index context does not match the one S2 Sys (UHT) - 111A STOR ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system: data object S2 Sys (UHT) FanSys--5 in index context does not match the one S2 Sys (UHT) FanSys--7 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--5 in index context does not match the one S2 Sys (UHT) SupplyFan--7 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].heating_system: data object S2 Sys (UHT) HeatSys--5 in index context does not match the one S2 Sys (UHT) HeatSys--7 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9]: data object S2 Sys (UHT) - 124 RECEIVING ZN in index context does not match the one S2 Sys (UHT) - 112A WATER ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system: data object S2 Sys (UHT) FanSys--8 in index context does not match the one S2 Sys (UHT) FanSys--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--8 in index context does not match the one S2 Sys (UHT) SupplyFan--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].heating_system: data object S2 Sys (UHT) HeatSys--8 in index context does not match the one S2 Sys (UHT) HeatSys--3 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10]: data object S2 Sys (UHT) - 129 Stor ZN in index context does not match the one S2 Sys (UHT) - 122 ELEC ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system: data object S2 Sys (UHT) FanSys--12 in index context does not match the one S2 Sys (UHT) FanSys--5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--12 in index context does not match the one S2 Sys (UHT) SupplyFan--5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].heating_system: data object S2 Sys (UHT) HeatSys--12 in index context does not match the one S2 Sys (UHT) HeatSys--5 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11]: data object S2 Sys (UHT) - 136 Stor ZN in index context does not match the one S2 Sys (UHT) - 124 RECEIVING ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system: data object S2 Sys (UHT) FanSys--11 in index context does not match the one S2 Sys (UHT) FanSys--8 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--11 in index context does not match the one S2 Sys (UHT) SupplyFan--8 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].heating_system: data object S2 Sys (UHT) HeatSys--11 in index context does not match the one S2 Sys (UHT) HeatSys--8 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12]: data object S2 Sys (UHT) - 137b Exit ZN in index context does not match the one S2 Sys (UHT) - 129 Stor ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system: data object S2 Sys (UHT) FanSys--10 in index context does not match the one S2 Sys (UHT) FanSys--12 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--10 in index context does not match the one S2 Sys (UHT) SupplyFan--12 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].heating_system: data object S2 Sys (UHT) HeatSys--10 in index context does not match the one S2 Sys (UHT) HeatSys--12 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13]: data object S2 Sys (UHT) - 150 EXT STOR ZN in index context does not match the one S2 Sys (UHT) - 136 Stor ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system: data object S2 Sys (UHT) FanSys--1 in index context does not match the one S2 Sys (UHT) FanSys--11 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--1 in index context does not match the one S2 Sys (UHT) SupplyFan--11 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].heating_system: data object S2 Sys (UHT) HeatSys--1 in index context does not match the one S2 Sys (UHT) HeatSys--11 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14]: data object S2 Sys (UHT) - 214 MECH ZN in index context does not match the one S2 Sys (UHT) - 137b Exit ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system: data object S2 Sys (UHT) FanSys--14 in index context does not match the one S2 Sys (UHT) FanSys--10 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--14 in index context does not match the one S2 Sys (UHT) SupplyFan--10 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].heating_system: data object S2 Sys (UHT) HeatSys--14 in index context does not match the one S2 Sys (UHT) HeatSys--10 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15]: data object S2 Sys (UHT) - ELEV ZN in index context does not match the one S2 Sys (UHT) - 150 EXT STOR ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system: data object S2 Sys (UHT) FanSys--4 in index context does not match the one S2 Sys (UHT) FanSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--4 in index context does not match the one S2 Sys (UHT) SupplyFan--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].heating_system: data object S2 Sys (UHT) HeatSys--4 in index context does not match the one S2 Sys (UHT) HeatSys--1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16]: data object S2 Sys (UHT) - S1-1 STAIR 1 ZN in index context does not match the one S2 Sys (UHT) - 214 MECH ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system: data object S2 Sys (UHT) FanSys--2 in index context does not match the one S2 Sys (UHT) FanSys--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--2 in index context does not match the one S2 Sys (UHT) SupplyFan--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].heating_system: data object S2 Sys (UHT) HeatSys--2 in index context does not match the one S2 Sys (UHT) HeatSys--14 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17]: data object S2 Sys (UHT) - S1-2 STAIR ZN in index context does not match the one S2 Sys (UHT) - ELEV ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system: data object S2 Sys (UHT) FanSys--15 in index context does not match the one S2 Sys (UHT) FanSys--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--15 in index context does not match the one S2 Sys (UHT) SupplyFan--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].heating_system: data object S2 Sys (UHT) HeatSys--15 in index context does not match the one S2 Sys (UHT) HeatSys--4 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18]: data object S2 Sys (UHT) - S2-1 STAIR 2 ZN in index context does not match the one S2 Sys (UHT) - S1-1 STAIR 1 ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system: data object S2 Sys (UHT) FanSys--6 in index context does not match the one S2 Sys (UHT) FanSys--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--6 in index context does not match the one S2 Sys (UHT) SupplyFan--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].heating_system: data object S2 Sys (UHT) HeatSys--6 in index context does not match the one S2 Sys (UHT) HeatSys--2 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19]: data object S2 Sys (UHT) - S2-2 STAIR 2 ZN in index context does not match the one S2 Sys (UHT) - S1-2 STAIR ZN in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system: data object S2 Sys (UHT) FanSys--13 in index context does not match the one S2 Sys (UHT) FanSys--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--13 in index context does not match the one S2 Sys (UHT) SupplyFan--15 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].heating_system: data object S2 Sys (UHT) HeatSys--13 in index context does not match the one S2 Sys (UHT) HeatSys--15 in compare context', 'path: $.ruleset_model_descriptions[0].schedules[0]: data object 0.5 Hr/Day Sch in index context does not match the one 0.5 Hr/DY SCH in compare context', 'path: $.ruleset_model_descriptions[0].schedules[17]: data object HW Lp Heat Reset Sch in index context does not match the one Hourly Report Schedule in compare context', 'path: $.ruleset_model_descriptions[0].schedules[18]: data object Hourly Report Schedule in index context does not match the one LTG ADJUST in compare context', 'path: $.ruleset_model_descriptions[0].schedules[19]: data object LTG ADJUST in index context does not match the one MIN OA SCH in compare context', 'path: $.ruleset_model_descriptions[0].schedules[20]: data object MIN OA SCH in index context does not match the one PNNL Scorecard Kit Gas Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[21]: data object PNNL Scorecard Kit Gas Sch in index context does not match the one S1 Sys1 (PVVT) Cool Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[22]: data object S1 Sys1 (PVVT) Cool Sch in index context does not match the one S1 Sys1 (PVVT) Fan Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[23]: data object S1 Sys1 (PVVT) Fan Sch in index context does not match the one S1 Sys1 (PVVT) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[24]: data object S1 Sys1 (PVVT) Heat Sch in index context does not match the one S2 Sys2 (UHT) Cool Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[25]: data object S2 Sys2 (UHT) Cool Sch in index context does not match the one S2 Sys2 (UHT) Fan Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[26]: data object S2 Sys2 (UHT) Fan Sch in index context does not match the one S2 Sys2 (UHT) Heat Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[27]: data object S2 Sys2 (UHT) Heat Sch in index context does not match the one UTILITY CLG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[28]: data object Schedule ON/OFF in index context does not match the one UTILITY HTG in compare context', 'path: $.ruleset_model_descriptions[0].schedules[29]: data object UTILITY CLG in index context does not match the one ZG0-S1 (PVVT) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[30]: data object UTILITY HTG in index context does not match the one ZG0-S1 (PVVT) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[31]: data object ZG0-S1 (PVVT) C-Inf Sch in index context does not match the one ZG4-S1 (UHT) C-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].schedules[32]: data object ZG0-S1 (PVVT) P-Inf Sch in index context does not match the one ZG4-S1 (UHT) P-Inf Sch in compare context', 'path: $.ruleset_model_descriptions[0].constructions[51]: data object BL SEMI-Heated EWall in index context does not match the one BL SEMI-Heateed Ewall in compare context']" + } + ], + "messages": "path: $.ruleset_model_descriptions[0]: data object [BL] Sample 5 in index context does not match the one [PR] Sample 5 - 17 - Proposed in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[3].terminals[0]: data object 100 WAITING ZN MainTerminal in index context does not match the one 100 WAITING ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[5].terminals[0]: data object 101 MAIN OFF 01 ZN MainTerminal in index context does not match the one 101 MAIN OFF 01 ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[7].terminals[0]: data object 101A OFFICE ZN MainTerminal in index context does not match the one 101A OFFICE ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[9].terminals[0]: data object 101C CONF RM ZN MainTerminal in index context does not match the one 101C CONF RM ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[11].terminals[0]: data object 102, 102A, 103A, 140A OFF ZN MainTerminal in index context does not match the one 102, 102A, 103A, 140A OFF ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[13].terminals[0]: data object 103 MEDIA ZN MainTerminal in index context does not match the one 103 MEDIA ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].terminals[0]: data object 103D WORK RM ZN MainTerminal in index context does not match the one 103D WORK RM ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[15].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[17].terminals[0]: data object 104B ELL/READING ZN MainTerminal in index context does not match the one 104B ELL/READING ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[19].terminals[0]: data object 104C ELL/READING ZN MainTerminal in index context does not match the one 104C ELL/READING ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[21].terminals[0]: data object 104D ELL/READING ZN MainTerminal in index context does not match the one 104D ELL/READING ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[23].terminals[0]: data object 110 ART CLASS ZN MainTerminal in index context does not match the one 110 ART CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[25].terminals[0]: data object 111 SCIENCE CLASS ZN MainTerminal in index context does not match the one 111 SCIENCE CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[29].terminals[0]: data object 112 & 114 1ST CLASS ZN MainTerminal in index context does not match the one 112 & 114 1ST CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[33].terminals[0]: data object 113 & 115 1ST CLASS ZN MainTerminal in index context does not match the one 113 & 115 1ST CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[35].terminals[0]: data object 116 RESOURCE ZN MainTerminal in index context does not match the one 116 RESOURCE ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[37].terminals[0]: data object 117 RESOURCE ZN MainTerminal in index context does not match the one 117 RESOURCE ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[39].terminals[0]: data object 118 & 120 2ND CLASS ZN MainTerminal in index context does not match the one 118 & 120 2ND CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[41].terminals[0]: data object 119 & 121 2ND CLASS ZN MainTerminal in index context does not match the one 119 & 121 2ND CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[47].terminals[0]: data object 124B KITCH OFF ZN MainTerminal in index context does not match the one 124B KITCH OFF ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[49].terminals[0]: data object 124C CUST OFF ZN MainTerminal in index context does not match the one 124C CUST OFF ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[51].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: C9 School ClgSpt; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[55].terminals[0]: data object 128A Faculty ZN MainTerminal in index context does not match the one 128A Faculty ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[59].terminals[0]: data object 135 Music ZN MainTerminal in index context does not match the one 135 Music ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[63].terminals[0]: data object 137 Pre-K ZN MainTerminal in index context does not match the one 137 Pre-K ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[67].terminals[0]: data object 139 Pre-K ZN MainTerminal in index context does not match the one 139 Pre-K ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[70].terminals[0]: data object 141 Kindergardten ZN MainTerminal in index context does not match the one 141 Kindergardten ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[72].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[74].terminals[0]: data object 143 & 144 Kindergarten ZN MainTerminal in index context does not match the one 143 & 144 Kindergarten ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[76].terminals[0]: data object 148 KINDERGARTEN ZN MainTerminal in index context does not match the one 148 KINDERGARTEN ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].terminals[0]: data object 1C-1 CORR ZN MainTerminal in index context does not match the one 1C-1 CORR ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[80].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[81].surfaces[16].area: index context data: 34.55974507392001 m2 does not equal to compare context data: 30.719412109440025 m2; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[82].terminals[0]: data object 1C-3 TO 7 CORR ZN MainTerminal in index context does not match the one 1C-3 TO 7 CORR ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[84].terminals[0]: data object 1C-8, 9 & 10 Corr ZN MainTerminal in index context does not match the one 1C-8, 9 & 10 Corr ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].design_thermostat_cooling_setpoint: index context data: 23.888888888888914 degree_Celsius does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[86].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: UTILITY HTG; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[88].terminals[0]: data object 1V-3 MAIN LOBBY ZN MainTerminal in index context does not match the one 1V-3 MAIN LOBBY ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[90].terminals[0]: data object 200 RESOURCE ZN MainTerminal in index context does not match the one 200 RESOURCE ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[92].terminals[0]: data object 201 ELL/READING ZN MainTerminal in index context does not match the one 201 ELL/READING ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[94].terminals[0]: data object 204 & 206 3RD CLASS ZN MainTerminal in index context does not match the one 204 & 206 3RD CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[96].terminals[0]: data object 205 & 207 3RD CLASS ZN MainTerminal in index context does not match the one 205 & 207 3RD CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[98].terminals[0]: data object 208 RESOURCE ZN MainTerminal in index context does not match the one 208 RESOURCE ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[100].terminals[0]: data object 209 RESOURCE ZN MainTerminal in index context does not match the one 209 RESOURCE ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[102].terminals[0]: data object 210 & 212 4TH CLASS ZN MainTerminal in index context does not match the one 210 & 212 4TH CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[104].terminals[0]: data object 211 & 213 4TH CLASS ZN MainTerminal in index context does not match the one 211 & 213 4TH CLASS ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[108].terminals[0]: data object 216 COPY ZN MainTerminal in index context does not match the one 216 COPY ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[110].terminals[0]: data object 218 OFF ZN MainTerminal in index context does not match the one 218 OFF ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[112].thermostat_heating_setpoint_schedule: index context data: C9 School HTGSpt does not equal to compare context data: None; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].zones[114].terminals[0]: data object 2C-1 & 3 CORR ZN MainTerminal in index context does not match the one 2C-1 & 3 CORR ZN DOASTerminal in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0]: data object BL SYS 3 Cafe in index context does not match the one AC-1-1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system: data object BL SYS 3 Cafe FanSys in index context does not match the one AC-1-1 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.supply_fans[0]: data object BL SYS 3 Cafe SupplyFan in index context does not match the one AC-1-1 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].heating_system: data object BL SYS 3 Cafe HeatSys in index context does not match the one AC-1-1 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].cooling_system: data object BL SYS 3 Cafe CoolSys in index context does not match the one AC-1-1 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1]: data object BL SYS 3 KIT in index context does not match the one AC-2-1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system: data object BL SYS 3 KIT FanSys in index context does not match the one AC-2-1 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.supply_fans[0]: data object BL SYS 3 KIT SupplyFan in index context does not match the one AC-2-1 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].heating_system: data object BL SYS 3 KIT HeatSys in index context does not match the one AC-2-1 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].cooling_system: data object BL SYS 3 KIT CoolSys in index context does not match the one AC-2-1 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2]: data object BL SYS 5 FLOOR 1 in index context does not match the one DOAS 1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system: data object BL SYS 5 FLOOR 1 FanSys in index context does not match the one DOAS 1 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.supply_fans[0]: data object BL SYS 5 FLOOR 1 SupplyFan in index context does not match the one DOAS 1 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.return_fans[0]: data object BL SYS 5 FLOOR 1 ReturnFan in index context does not match the one DOAS 1 ReturnFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].heating_system: data object BL SYS 5 FLOOR 1 HeatSys in index context does not match the one DOAS 1 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].cooling_system: data object BL SYS 5 FLOOR 1 CoolSys in index context does not match the one DOAS 1 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3]: data object BL Sys 5 2nd flr in index context does not match the one DOAS 2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system: data object BL Sys 5 2nd flr FanSys in index context does not match the one DOAS 2 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.supply_fans[0]: data object BL Sys 5 2nd flr SupplyFan in index context does not match the one DOAS 2 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.return_fans[0]: data object BL Sys 5 2nd flr ReturnFan in index context does not match the one DOAS 2 ReturnFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].heating_system: data object BL Sys 5 2nd flr HeatSys in index context does not match the one DOAS 2 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].cooling_system: data object BL Sys 5 2nd flr CoolSys in index context does not match the one DOAS 2 CoolSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4]: data object S2 Sys (UHT) in index context does not match the one RTU-1-GYM in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system: data object S2 Sys (UHT) FanSys in index context does not match the one RTU-1-GYM FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan in index context does not match the one RTU-1-GYM SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].heating_system: data object S2 Sys (UHT) HeatSys in index context does not match the one RTU-1-GYM HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5]: data object S2 Sys (UHT) - 1-V4 Vest ZN in index context does not match the one RTU-2 CAF\u00c9 01 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system: data object S2 Sys (UHT) FanSys--9 in index context does not match the one RTU-2 CAF\u00c9 01 FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--9 in index context does not match the one RTU-2 CAF\u00c9 01 SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].heating_system: data object S2 Sys (UHT) HeatSys--9 in index context does not match the one RTU-2 CAF\u00c9 01 HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6]: data object S2 Sys (UHT) - 111A STOR ZN in index context does not match the one S2 Sys (UHT) in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system: data object S2 Sys (UHT) FanSys--7 in index context does not match the one S2 Sys (UHT) FanSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--7 in index context does not match the one S2 Sys (UHT) SupplyFan in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].heating_system: data object S2 Sys (UHT) HeatSys--7 in index context does not match the one S2 Sys (UHT) HeatSys in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7]: data object S2 Sys (UHT) - 112A WATER ZN in index context does not match the one S2 Sys (UHT) - 1-V4 Vest ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system: data object S2 Sys (UHT) FanSys--3 in index context does not match the one S2 Sys (UHT) FanSys--9 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--3 in index context does not match the one S2 Sys (UHT) SupplyFan--9 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].heating_system: data object S2 Sys (UHT) HeatSys--3 in index context does not match the one S2 Sys (UHT) HeatSys--9 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8]: data object S2 Sys (UHT) - 122 ELEC ZN in index context does not match the one S2 Sys (UHT) - 111A STOR ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system: data object S2 Sys (UHT) FanSys--5 in index context does not match the one S2 Sys (UHT) FanSys--7 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--5 in index context does not match the one S2 Sys (UHT) SupplyFan--7 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].heating_system: data object S2 Sys (UHT) HeatSys--5 in index context does not match the one S2 Sys (UHT) HeatSys--7 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9]: data object S2 Sys (UHT) - 124 RECEIVING ZN in index context does not match the one S2 Sys (UHT) - 112A WATER ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system: data object S2 Sys (UHT) FanSys--8 in index context does not match the one S2 Sys (UHT) FanSys--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--8 in index context does not match the one S2 Sys (UHT) SupplyFan--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].heating_system: data object S2 Sys (UHT) HeatSys--8 in index context does not match the one S2 Sys (UHT) HeatSys--3 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10]: data object S2 Sys (UHT) - 129 Stor ZN in index context does not match the one S2 Sys (UHT) - 122 ELEC ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system: data object S2 Sys (UHT) FanSys--12 in index context does not match the one S2 Sys (UHT) FanSys--5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--12 in index context does not match the one S2 Sys (UHT) SupplyFan--5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].heating_system: data object S2 Sys (UHT) HeatSys--12 in index context does not match the one S2 Sys (UHT) HeatSys--5 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11]: data object S2 Sys (UHT) - 136 Stor ZN in index context does not match the one S2 Sys (UHT) - 124 RECEIVING ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system: data object S2 Sys (UHT) FanSys--11 in index context does not match the one S2 Sys (UHT) FanSys--8 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--11 in index context does not match the one S2 Sys (UHT) SupplyFan--8 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].heating_system: data object S2 Sys (UHT) HeatSys--11 in index context does not match the one S2 Sys (UHT) HeatSys--8 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12]: data object S2 Sys (UHT) - 137b Exit ZN in index context does not match the one S2 Sys (UHT) - 129 Stor ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system: data object S2 Sys (UHT) FanSys--10 in index context does not match the one S2 Sys (UHT) FanSys--12 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--10 in index context does not match the one S2 Sys (UHT) SupplyFan--12 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].heating_system: data object S2 Sys (UHT) HeatSys--10 in index context does not match the one S2 Sys (UHT) HeatSys--12 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13]: data object S2 Sys (UHT) - 150 EXT STOR ZN in index context does not match the one S2 Sys (UHT) - 136 Stor ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system: data object S2 Sys (UHT) FanSys--1 in index context does not match the one S2 Sys (UHT) FanSys--11 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--1 in index context does not match the one S2 Sys (UHT) SupplyFan--11 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].heating_system: data object S2 Sys (UHT) HeatSys--1 in index context does not match the one S2 Sys (UHT) HeatSys--11 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14]: data object S2 Sys (UHT) - 214 MECH ZN in index context does not match the one S2 Sys (UHT) - 137b Exit ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system: data object S2 Sys (UHT) FanSys--14 in index context does not match the one S2 Sys (UHT) FanSys--10 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--14 in index context does not match the one S2 Sys (UHT) SupplyFan--10 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].heating_system: data object S2 Sys (UHT) HeatSys--14 in index context does not match the one S2 Sys (UHT) HeatSys--10 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15]: data object S2 Sys (UHT) - ELEV ZN in index context does not match the one S2 Sys (UHT) - 150 EXT STOR ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system: data object S2 Sys (UHT) FanSys--4 in index context does not match the one S2 Sys (UHT) FanSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--4 in index context does not match the one S2 Sys (UHT) SupplyFan--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[15].heating_system: data object S2 Sys (UHT) HeatSys--4 in index context does not match the one S2 Sys (UHT) HeatSys--1 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16]: data object S2 Sys (UHT) - S1-1 STAIR 1 ZN in index context does not match the one S2 Sys (UHT) - 214 MECH ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system: data object S2 Sys (UHT) FanSys--2 in index context does not match the one S2 Sys (UHT) FanSys--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--2 in index context does not match the one S2 Sys (UHT) SupplyFan--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].heating_system: data object S2 Sys (UHT) HeatSys--2 in index context does not match the one S2 Sys (UHT) HeatSys--14 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17]: data object S2 Sys (UHT) - S1-2 STAIR ZN in index context does not match the one S2 Sys (UHT) - ELEV ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system: data object S2 Sys (UHT) FanSys--15 in index context does not match the one S2 Sys (UHT) FanSys--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--15 in index context does not match the one S2 Sys (UHT) SupplyFan--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].heating_system: data object S2 Sys (UHT) HeatSys--15 in index context does not match the one S2 Sys (UHT) HeatSys--4 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18]: data object S2 Sys (UHT) - S2-1 STAIR 2 ZN in index context does not match the one S2 Sys (UHT) - S1-1 STAIR 1 ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system: data object S2 Sys (UHT) FanSys--6 in index context does not match the one S2 Sys (UHT) FanSys--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--6 in index context does not match the one S2 Sys (UHT) SupplyFan--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].heating_system: data object S2 Sys (UHT) HeatSys--6 in index context does not match the one S2 Sys (UHT) HeatSys--2 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19]: data object S2 Sys (UHT) - S2-2 STAIR 2 ZN in index context does not match the one S2 Sys (UHT) - S1-2 STAIR ZN in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system: data object S2 Sys (UHT) FanSys--13 in index context does not match the one S2 Sys (UHT) FanSys--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.supply_fans[0]: data object S2 Sys (UHT) SupplyFan--13 in index context does not match the one S2 Sys (UHT) SupplyFan--15 in compare context; path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].heating_system: data object S2 Sys (UHT) HeatSys--13 in index context does not match the one S2 Sys (UHT) HeatSys--15 in compare context; path: $.ruleset_model_descriptions[0].schedules[0]: data object 0.5 Hr/Day Sch in index context does not match the one 0.5 Hr/DY SCH in compare context; path: $.ruleset_model_descriptions[0].schedules[17]: data object HW Lp Heat Reset Sch in index context does not match the one Hourly Report Schedule in compare context; path: $.ruleset_model_descriptions[0].schedules[18]: data object Hourly Report Schedule in index context does not match the one LTG ADJUST in compare context; path: $.ruleset_model_descriptions[0].schedules[19]: data object LTG ADJUST in index context does not match the one MIN OA SCH in compare context; path: $.ruleset_model_descriptions[0].schedules[20]: data object MIN OA SCH in index context does not match the one PNNL Scorecard Kit Gas Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[21]: data object PNNL Scorecard Kit Gas Sch in index context does not match the one S1 Sys1 (PVVT) Cool Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[22]: data object S1 Sys1 (PVVT) Cool Sch in index context does not match the one S1 Sys1 (PVVT) Fan Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[23]: data object S1 Sys1 (PVVT) Fan Sch in index context does not match the one S1 Sys1 (PVVT) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[24]: data object S1 Sys1 (PVVT) Heat Sch in index context does not match the one S2 Sys2 (UHT) Cool Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[25]: data object S2 Sys2 (UHT) Cool Sch in index context does not match the one S2 Sys2 (UHT) Fan Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[26]: data object S2 Sys2 (UHT) Fan Sch in index context does not match the one S2 Sys2 (UHT) Heat Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[27]: data object S2 Sys2 (UHT) Heat Sch in index context does not match the one UTILITY CLG in compare context; path: $.ruleset_model_descriptions[0].schedules[28]: data object Schedule ON/OFF in index context does not match the one UTILITY HTG in compare context; path: $.ruleset_model_descriptions[0].schedules[29]: data object UTILITY CLG in index context does not match the one ZG0-S1 (PVVT) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[30]: data object UTILITY HTG in index context does not match the one ZG0-S1 (PVVT) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[31]: data object ZG0-S1 (PVVT) C-Inf Sch in index context does not match the one ZG4-S1 (UHT) C-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].schedules[32]: data object ZG0-S1 (PVVT) P-Inf Sch in index context does not match the one ZG4-S1 (UHT) P-Inf Sch in compare context; path: $.ruleset_model_descriptions[0].constructions[51]: data object BL SEMI-Heated EWall in index context does not match the one BL SEMI-Heateed Ewall in compare context" + } + }, + "1-8": { + "Sample 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object [PR] Sample 5 - 17 - Proposed in index context does not match the one [PR] Sample 5 - 17 in compare context']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object [PR] Sample 5 - 17 - Proposed in index context does not match the one [PR] Sample 5 - 17 in compare context" + ] + } + }, + "1-9": { + "Sample 5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "comparison_result", + "value": "False" + }, + { + "variable": "error_msg_list", + "value": "['path: $.ruleset_model_descriptions[0]: data object [BL] Sample 5 in index context does not match the one [BL] Sample 5 - 1 in compare context', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.minimum_outdoor_airflow: index context data: 1726.260043876065 liter / second does not equal to compare context data: 1726.2601318280006 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.minimum_outdoor_airflow: index context data: 151.14019731926223 liter / second does not equal to compare context data: 151.1401858948691 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.minimum_outdoor_airflow: index context data: 5896.488874114358 liter / second does not equal to compare context data: 5896.488578060296 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.minimum_outdoor_airflow: index context data: 1872.6397302931584 liter / second does not equal to compare context data: 1872.639761046826 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.minimum_outdoor_airflow: index context data: 14.000503124241705 liter / second does not equal to compare context data: 14.290723099068593 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.minimum_outdoor_airflow: index context data: 10.481881381894476 liter / second does not equal to compare context data: 10.523504835795102 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.minimum_outdoor_airflow: index context data: 5.273840200039273 liter / second does not equal to compare context data: 5.28526834969426 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.minimum_outdoor_airflow: index context data: 7.963327320021616 liter / second does not equal to compare context data: 7.9553733272384015 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.minimum_outdoor_airflow: index context data: 10.716040667892498 liter / second does not equal to compare context data: 10.704628110691635 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.minimum_outdoor_airflow: index context data: 29.47784696532784 liter / second does not equal to compare context data: 29.366772463321016 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.minimum_outdoor_airflow: index context data: 15.021956213813345 liter / second does not equal to compare context data: 15.009566620669727 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.minimum_outdoor_airflow: index context data: 13.020064048622704 liter / second does not equal to compare context data: 12.938228764810004 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.minimum_outdoor_airflow: index context data: 5.115056637490018 liter / second does not equal to compare context data: 5.118788325243248 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.minimum_outdoor_airflow: index context data: 6.506661140568172 liter / second does not equal to compare context data: 6.498958024486796 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.minimum_outdoor_airflow: index context data: 19.640808444850713 liter / second does not equal to compare context data: 19.62463985336346 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.minimum_outdoor_airflow: index context data: 16.59649555253518 liter / second does not equal to compare context data: 16.57517494437607 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.minimum_outdoor_airflow: index context data: 18.605395793766142 liter / second does not equal to compare context data: 18.59526578933505 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.minimum_outdoor_airflow: index context data: 13.749161943227831 liter / second does not equal to compare context data: 13.722415800991856 liter / second', 'path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.minimum_outdoor_airflow: index context data: 16.66357867727788 liter / second does not equal to compare context data: 16.623341879201384 liter / second', 'path: $.ruleset_model_descriptions[0].fluid_loops[0].pump_power_per_flow_rate: index context data: 312.70886534918276 second * watt / liter does not equal to compare context data: 312.708874144671 second * watt / liter', 'path: $.ruleset_model_descriptions[0].boilers[0].operation_upper_limit: index context data: 599702.0363911111 watt does not equal to compare context data: 600712.9119211112 watt', 'path: $.ruleset_model_descriptions[0].boilers[1].operation_lower_limit: index context data: 599702.0363911111 watt does not equal to compare context data: 600712.9119211112 watt', 'path: $.ruleset_model_descriptions[0].boilers[1].operation_upper_limit: index context data: 1199404.0727822222 watt does not equal to compare context data: 1201425.8238422223 watt']" + } + ], + "messages": [ + "path: $.ruleset_model_descriptions[0]: data object [BL] Sample 5 in index context does not match the one [BL] Sample 5 - 1 in compare context", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[0].fan_system.minimum_outdoor_airflow: index context data: 1726.260043876065 liter / second does not equal to compare context data: 1726.2601318280006 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[1].fan_system.minimum_outdoor_airflow: index context data: 151.14019731926223 liter / second does not equal to compare context data: 151.1401858948691 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[2].fan_system.minimum_outdoor_airflow: index context data: 5896.488874114358 liter / second does not equal to compare context data: 5896.488578060296 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[3].fan_system.minimum_outdoor_airflow: index context data: 1872.6397302931584 liter / second does not equal to compare context data: 1872.639761046826 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[4].fan_system.minimum_outdoor_airflow: index context data: 14.000503124241705 liter / second does not equal to compare context data: 14.290723099068593 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[5].fan_system.minimum_outdoor_airflow: index context data: 10.481881381894476 liter / second does not equal to compare context data: 10.523504835795102 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[6].fan_system.minimum_outdoor_airflow: index context data: 5.273840200039273 liter / second does not equal to compare context data: 5.28526834969426 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[7].fan_system.minimum_outdoor_airflow: index context data: 7.963327320021616 liter / second does not equal to compare context data: 7.9553733272384015 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[8].fan_system.minimum_outdoor_airflow: index context data: 10.716040667892498 liter / second does not equal to compare context data: 10.704628110691635 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[9].fan_system.minimum_outdoor_airflow: index context data: 29.47784696532784 liter / second does not equal to compare context data: 29.366772463321016 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[10].fan_system.minimum_outdoor_airflow: index context data: 15.021956213813345 liter / second does not equal to compare context data: 15.009566620669727 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[11].fan_system.minimum_outdoor_airflow: index context data: 13.020064048622704 liter / second does not equal to compare context data: 12.938228764810004 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[12].fan_system.minimum_outdoor_airflow: index context data: 5.115056637490018 liter / second does not equal to compare context data: 5.118788325243248 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[13].fan_system.minimum_outdoor_airflow: index context data: 6.506661140568172 liter / second does not equal to compare context data: 6.498958024486796 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[14].fan_system.minimum_outdoor_airflow: index context data: 19.640808444850713 liter / second does not equal to compare context data: 19.62463985336346 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[16].fan_system.minimum_outdoor_airflow: index context data: 16.59649555253518 liter / second does not equal to compare context data: 16.57517494437607 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[17].fan_system.minimum_outdoor_airflow: index context data: 18.605395793766142 liter / second does not equal to compare context data: 18.59526578933505 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[18].fan_system.minimum_outdoor_airflow: index context data: 13.749161943227831 liter / second does not equal to compare context data: 13.722415800991856 liter / second", + "path: $.ruleset_model_descriptions[0].buildings[0].building_segments[0].heating_ventilating_air_conditioning_systems[19].fan_system.minimum_outdoor_airflow: index context data: 16.66357867727788 liter / second does not equal to compare context data: 16.623341879201384 liter / second", + "path: $.ruleset_model_descriptions[0].fluid_loops[0].pump_power_per_flow_rate: index context data: 312.70886534918276 second * watt / liter does not equal to compare context data: 312.708874144671 second * watt / liter", + "path: $.ruleset_model_descriptions[0].boilers[0].operation_upper_limit: index context data: 599702.0363911111 watt does not equal to compare context data: 600712.9119211112 watt", + "path: $.ruleset_model_descriptions[0].boilers[1].operation_lower_limit: index context data: 599702.0363911111 watt does not equal to compare context data: 600712.9119211112 watt", + "path: $.ruleset_model_descriptions[0].boilers[1].operation_upper_limit: index context data: 1199404.0727822222 watt does not equal to compare context data: 1201425.8238422223 watt" + ] + } + }, + "4-1": { + "148 KINDERGARTEN ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "148 KINDERGARTEN PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "100 WAITING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "100 WAITING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "101C CONF RM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "101C CONF RM PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "101A OFFICE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "101A OFFICE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-1 CORR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Heating schedule must be found or not found for both Baseline and Proposed models." + }, + "1C-1 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM Z": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "103 MEDIA ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "103 MEDIA PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "104B ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "104B ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "104C ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "104C ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "104D ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "104D ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "117 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "117 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "110 ART CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "110 ART CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "116 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "116 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "124B KITCH OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "124B KITCH OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "124C CUST OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "124C CUST OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "140 GYM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "141 Kindergardten ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "141 Kindergardten PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "139 Pre-K ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "139 Pre-K PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "137 Pre-K ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "137 Pre-K PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "135 Music ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "135 Music PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "128A Faculty ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "128A Faculty PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "103D WORK RM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Heating schedule must be found or not found for both Baseline and Proposed models." + }, + "103D WORK RM PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "142 Data ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Heating schedule must be found or not found for both Baseline and Proposed models." + }, + "142 Data PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "201 ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "201 ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "209 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "209 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "216 COPY ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "216 COPY PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "218 OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "218 OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "208 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "208 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "200 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "200 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "219 DATA ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Heating schedule must be found or not found for both Baseline and Proposed models." + }, + "219 DATA PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "ELEV PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "136 Stor PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "ELEV 02 PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "126 KITCHEN ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "False" + } + ], + "messages": "There is a temperature schedule mismatch between the baseline and proposed RMDs. Fail unless table G3.1 #4 baseline column exception #s 1 and/or 2 are applicable" + }, + "126 KITCHEN PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "127 cafeteria ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + }, + "127 cafeteria PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "cooling_schedule_matched", + "value": "True" + }, + { + "variable": "heating_schedule_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-2": { + "148 KINDERGARTEN ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "148 KINDERGARTEN PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "100 WAITING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "100 WAITING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "101C CONF RM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "101C CONF RM PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "101A OFFICE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "101A OFFICE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-1 CORR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-1 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM Z": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "103 MEDIA ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "103 MEDIA PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "104B ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "104B ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "104C ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "104C ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "104D ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "104D ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "117 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "117 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "110 ART CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "110 ART CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "116 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "116 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "124B KITCH OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "124B KITCH OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "124C CUST OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "124C CUST OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "140 GYM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "141 Kindergardten ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "141 Kindergardten PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "139 Pre-K ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "139 Pre-K PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "137 Pre-K ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "137 Pre-K PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "135 Music ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "135 Music PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "128A Faculty ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "128A Faculty PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "103D WORK RM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "103D WORK RM PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "142 Data ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "142 Data PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "201 ELL/READING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "201 ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "209 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "209 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "216 COPY ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "216 COPY PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "218 OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "218 OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "208 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "208 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "200 RESOURCE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "200 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "219 DATA ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "219 DATA PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "ELEV PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "136 Stor PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "ELEV 02 PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "126 KITCHEN ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "126 KITCHEN PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "127 cafeteria ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + }, + "127 cafeteria PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "minimum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "minimum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "minimum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "minimum_humidity_schedule_type_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_stpt_sch_id_b", + "value": "None" + }, + { + "variable": "maximum_humidity_stpt_sch_id_p", + "value": "None" + }, + { + "variable": "maximum_humidity_schedule_matched", + "value": "True" + }, + { + "variable": "maximum_humidity_schedule_type_matched", + "value": "True" + } + ], + "messages": "" + } + }, + "4-11": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "No fan operating schedules found for zone '148 KINDERGARTEN PLNM ZN', and no fallback assumed." + } + }, + "4-14": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-1": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "no_of_rmds", + "value": "6" + }, + { + "variable": "no_of_output_instance", + "value": "5" + }, + { + "variable": "rotation_expected_b", + "value": "True" + }, + { + "variable": "has_baseline_0", + "value": "True" + }, + { + "variable": "has_baseline_90", + "value": "True" + }, + { + "variable": "has_baseline_180", + "value": "True" + }, + { + "variable": "has_baseline_270", + "value": "True" + }, + { + "variable": "has_proposed", + "value": "True" + }, + { + "variable": "has_user", + "value": "True" + }, + { + "variable": "has_baseline_0_output", + "value": "True" + }, + { + "variable": "has_baseline_90_output", + "value": "True" + }, + { + "variable": "has_baseline_180_output", + "value": "True" + }, + { + "variable": "has_baseline_270_output", + "value": "True" + }, + { + "variable": "has_proposed_output", + "value": "True" + }, + { + "variable": "has_user_output", + "value": "True" + } + ], + "messages": "" + } + }, + "5-2": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surfaces_casting_shade_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-3": { + "101Ceiling (G.SSW1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.SSW35.E59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.SE3.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.SE37.E63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.C4.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.C38.E65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.WSW5.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.WSW39.E70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.W6.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.W40.E76)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.C7.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.C41.E77)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.C8.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.C42.E78)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.E9.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.E43.E79)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.W11.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.W45.E85)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.ESE12.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.ESE46.E89)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.E13.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.E47.E91)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.ENE14.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.ENE48.E95)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.W16.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.W50.E101)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.S17.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Ceiling (G.S18.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Ceiling (G.S19.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Ceiling (G.NW20.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.NW54.E112)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.N22.I93)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Ceiling (G.N23.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Ceiling (G.N24.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Ceiling (G.C31.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.C65.E138)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.E32.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.E66.E140)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.SSE34.I166)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.SSE68.E144)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMRoof (G.1.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.SSW1.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.SSW14.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.SSE2.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.SSE15.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.SW5.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.SW18.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.ESE7.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.ESE20.E38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.ENE9.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.ENE22.E43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.W11.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.W24.E48)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.NNW12.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.NNW25.E51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.C15.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.C49.E97)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.C3.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.C16.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.WSW1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.WSW17.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.S2.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.S18.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.S3.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.S19.E38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.S4.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.S20.E40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.E6.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.E22.E45)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.NE7.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.NE23.E49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.N11.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.N27.E58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.N12.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.N28.E60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.N13.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.N29.E64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.WNW15.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.WNW31.E70)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.SSE16.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.SSE32.E76)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndCeiling (G.SE5.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndRoof (G.SE21.E43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Ceiling (G.W2.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.W36.E61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.NE10.I51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.N21.I90)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.N25.I103)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.C26.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.NNE27.I110)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.N28.I113)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.W29.I115)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.NE30.I123)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Roof (G.NE44.E81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Roof (G.W63.E133)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Roof (G.NE64.E137)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102Ceiling (G.S4.I18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102Ceiling (G.S6.I25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102Ceiling (G.E8.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Ceiling (G.SSE10.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102Roof (G.S17.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102Roof (G.S19.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102Roof (G.E21.E40)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Roof (G.SSE23.E46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndCeiling (G.N8.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndCeiling (G.N9.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndCeiling (G.C10.I38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndCeiling (G.N14.I54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndRoof (G.N24.E51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndRoof (G.N25.E54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndRoof (G.C26.E55)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndRoof (G.N30.E66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Ceiling (G.SE33.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Roof (G.SE67.E142)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.NNE13.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102Roof (G.NNE26.E57)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-4": { + "101Roof (G.SSW35.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.SE37.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.C38.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.WSW39.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.W40.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.C41.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.C42.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.E43.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.W45.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.ESE46.E89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.E47.E91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.ENE48.E95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.W50.E101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.NW54.E112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.C65.E138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.E66.E140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.SSE68.E144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "GYMRoof (G.1.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.SSW14.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.SSE15.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.SW18.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.ESE20.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.ENE22.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.W24.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.NNW25.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.C49.E97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.C16.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.WSW17.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.S18.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.S19.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.S20.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.E22.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.NE23.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.N27.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.N28.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.N29.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.WNW31.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.SSE32.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.SE21.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.W36.E61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.NE10.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.N21.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.N25.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.C26.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.NNE27.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.N28.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.W29.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Ceiling (G.NE30.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.NE44.E81)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.W63.E133)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.NE64.E137)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Ceiling (G.S4.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Ceiling (G.S6.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Ceiling (G.SSE10.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.S17.E30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.S19.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.E21.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.SSE23.E46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndCeiling (G.N8.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndCeiling (G.N9.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndCeiling (G.C10.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndCeiling (G.N14.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.N24.E51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.N25.E54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.C26.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "2ndRoof (G.N30.E66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.173", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "101Roof (G.SE67.E142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + }, + "102Roof (G.NNE26.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "roof_u_factor", + "value": "0.06252819705088532", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.063", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "None" + }, + { + "variable": "target_u_factor_nonres", + "value": "None" + } + ], + "messages": "" + } + }, + "5-5": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-6": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-7": { + "101South Wall (G.SSW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.SSW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.SSW1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.SSW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSW1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSW35.E56)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.SSW35.E57)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.SSW35.E58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.SSW35.I167)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSW35.I168)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSW35.I169)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SE3.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SE3.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SE3.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SE3.I14)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.SE3.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SE3.I18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SE3.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SE3.E5)INT": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SE37.E62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.SE37.I172)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SE37.I173)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SE37.I174)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I175)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SE37.I176)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I177)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SE37.I178)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I179)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.SE37.I180)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I181)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SE37.I182)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SE37.I183)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.C4.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.C38.E64)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101WNW Wall (G.WSW5.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.WSW5.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.WSW5.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.WSW5.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.WSW5.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.WSW5.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.WSW5.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.WSW5.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.WSW5.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101WNW Wall (G.WSW39.E66)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.WSW39.E67)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.WSW39.E68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.WSW39.E69)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.WSW39.I184)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.WSW39.I185)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.WSW39.I186)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.WSW39.I187)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.WSW39.I188)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101WNW Wall (G.W6.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101WSW Wall (G.W6.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.W6.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W6.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W6.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W6.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W6.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101WNW Wall (G.W40.E71)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E72)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101WSW Wall (G.W40.E73)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E74)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E75)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.W40.I189)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W40.I190)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W40.I191)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W40.I192)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W40.I193)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C7.I34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.C7.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.C7.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.C7.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C41.I194)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.C41.I195)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.C41.I196)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.C41.I197)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.E9.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.E9.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.E9.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.E9.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.E9.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.E9.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.E9.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.E9.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.E43.I198)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.E43.I199)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.E43.I200)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.E43.I201)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.E43.I202)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.E43.I203)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.E43.I204)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.E43.I205)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W11.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W11.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.W11.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W11.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.W11.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W11.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.W11.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W11.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W11.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W11.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W45.E82)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W45.E83)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.W45.E84)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W45.I208)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.W45.I209)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W45.I210)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.W45.I211)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W45.I212)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W45.I213)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.W45.I214)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.ESE12.E22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.ESE12.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.ESE12.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.E86)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.E87)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.ESE46.E88)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.ESE46.I215)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.ESE46.I216)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.I217)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.E13.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.E13.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.E47.E90)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.E47.I218)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.ENE14.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.ENE14.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.ENE14.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.ENE14.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.ENE14.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.ENE48.E92)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.ENE48.E93)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.ENE48.E94)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.ENE48.I219)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.ENE48.I220)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W16.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.W16.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.W16.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.W16.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W16.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W50.E98)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.W50.E99)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.W50.E100)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.W50.I223)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.W50.I224)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.S17.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.S51.E102)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.S18.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.S18.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.S18.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.S52.E104)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.S52.I225)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.S52.I226)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.S19.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.S19.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.S19.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.S53.E106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.S53.I227)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.S53.I228)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.NW20.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.NW20.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.NW20.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.NW20.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.NW20.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.NW20.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.NW54.E108)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.E109)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.E110)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.NW54.E111)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.I229)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I230)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101West Wall (G.NW54.I231)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I232)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.I233)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I234)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.N22.E39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "EWALL 02": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.N22.E41)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.N22.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.N22.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.N56.E115)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "EWALL 01": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.N56.E117)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.N56.I236)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.N56.I237)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.N23.E42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.N23.I94)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.N23.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.N57.E119)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.N57.I238)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.N57.I239)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.N24.E43)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.N24.E44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.N24.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.N24.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.N58.E121)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.N58.E122)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.N58.I240)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.N58.I241)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C31.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.C31.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.C31.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C65.I260)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.C65.I261)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.C65.I262)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "MASS WALLS 11": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.E32.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.E32.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MASS WALLS 10": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.E66.I263)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.E66.I264)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.E55)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I134)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I137)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I138)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I139)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I146)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I156)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I157)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I158)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I159)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I160)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I161)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I162)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I163)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I164)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I165)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.E143)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I266)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I267)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I268)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I269)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I270)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I271)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I272)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I273)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I274)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I275)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I276)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I277)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I278)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I279)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I280)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I281)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I282)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I283)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I284)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I285)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I286)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I287)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I288)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I289)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I290)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I291)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I292)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I293)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I294)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I295)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I296)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I297)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I298)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.SSW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102East Wall (G.SSW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SSW1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSW1.I4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SSW1.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSW1.I6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SSW1.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.SSW14.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102East Wall (G.SSW14.I86)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSW14.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SSW14.I88)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSW14.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SSW14.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSW14.I91)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SSW14.I92)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SSE2.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102South Wall (G.SSE2.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102East Wall (G.SSE2.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSE2.I10)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SSE2.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSE2.I12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SSE2.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SSE15.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102South Wall (G.SSE15.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102East Wall (G.SSE15.I93)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102North Wall (G.SSE15.I94)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102West Wall (G.SSE15.I95)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SSE15.I96)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SSE15.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.SW5.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102West Wall (G.SW5.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102South Wall (G.SW5.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SW5.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SW5.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.SW5.I22)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.SW18.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102West Wall (G.SW18.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102South Wall (G.SW18.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SW18.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.SW18.I102)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102West Wall (G.SW18.I103)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102East Wall (G.ESE7.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102South Wall (G.ESE7.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102West Wall (G.ESE7.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.ESE7.I27)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.ESE7.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.ESE20.E36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102South Wall (G.ESE20.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102West Wall (G.ESE20.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.ESE20.I106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102West Wall (G.ESE20.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "MASS WALLS 03": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 02": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 04": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 01": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 19": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 18": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 06": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 22": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I36)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I38)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I46)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I54)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I58)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MASS WALLS 05": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 20": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I125)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I132)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I133)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I134)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I135)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I136)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I137)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I138)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I139)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I140)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I141)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I142)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I143)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I144)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I145)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I146)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I147)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I148)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I149)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I150)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C15.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.C15.I69)EXT": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.C15.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C49.E96)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.C49.I221)EXT": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.C49.I222)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WSW1.E1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WSW1.E2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW1.E3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW1.I2)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WSW1.I3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WSW17.E31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WSW17.E32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW17.E33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW17.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WSW17.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S2.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S18.E35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S3.E5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.S3.I8)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.S3.I9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S19.E37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.S19.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.S19.I85)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S4.E6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S20.E39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E6.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.E6.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.E6.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E22.E44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.E22.I86)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.E22.I87)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.NE7.E10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE7.E11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.NE7.E12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE7.I20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.NE7.I21)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.NE23.E46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE23.E47)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.NE23.E48)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE23.I88)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.NE23.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N11.E16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N11.E17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N11.I40)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N11.I41)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N27.E56)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N27.E57)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N27.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N27.I101)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N12.E18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N12.I44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N12.I45)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N28.E59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N28.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N28.I103)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N13.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N13.E20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N13.E21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N13.I48)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N13.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N29.E61)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N29.E62)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N29.E63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N29.I104)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N29.I105)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WNW15.E23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW15.E24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WNW15.E25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW15.I56)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WNW15.I57)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WNW31.E67)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW31.E68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WNW31.E69)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW31.I108)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WNW31.I109)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.E26)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.E28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I61)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I62)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I63)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE16.I64)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I65)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE16.I66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I67)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE16.I68)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I69)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I70)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I72)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I74)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I75)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I76)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I77)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.E71)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E72)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.E73)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E74)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E75)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I110)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I112)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I113)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE32.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I115)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE32.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE32.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I123)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I124)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I125)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I126)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I127)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I128)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I129)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I130)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SE5.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SE5.E8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SE21.E41)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SE21.E42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.W2.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.W2.I5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.W2.I6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101West Wall (G.W36.E60)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.W36.I170)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.W36.I171)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "MASS WALLS 23": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101North Wall (G.NE10.I49)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.NE10.I50)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 23": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101East Wall (G.N21.I89)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 17": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.N25.I100)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.N25.I101)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.N25.I102)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C26.I104)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.C26.I105)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101West Wall (G.C26.I106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 13": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 14": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.NNE27.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.NNE27.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 22": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101West Wall (G.N28.I111)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.N28.I112)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W29.E49)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.W29.I114)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 08": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 11": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 06": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.NE30.I116)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.NE30.I117)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.NE30.I118)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.NE30.I119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.NE30.I120)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101North Wall (G.NE30.I121)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.NE30.I122)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MASS WALLS 24": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.NE44.I206)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.NE44.I207)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 24": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.N55.I235)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 16": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101West Wall (G.N59.I242)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.N59.I243)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.N59.I244)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.C60.I245)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.C60.I246)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101West Wall (G.C60.I247)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 12": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 15": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.NNE61.I248)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.NNE61.I249)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 09": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101West Wall (G.N62.I250)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101East Wall (G.N62.I251)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101West Wall (G.W63.E132)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.W63.I252)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 07": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 10": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 05": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I253)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I254)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I255)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I256)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I257)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101North Wall (G.NE64.I258)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I259)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102South Wall (G.S4.E4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102East Wall (G.S4.I16)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.S4.I17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.S6.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102West Wall (G.S6.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 02": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102North Wall (G.E8.I30)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.E8.I31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SSE10.E13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 03": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102South Wall (G.S17.E29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102East Wall (G.S17.I98)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102West Wall (G.S17.I99)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102South Wall (G.S19.E34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102West Wall (G.S19.I104)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 01": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102North Wall (G.E21.I108)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.E21.I109)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.SSE23.E44)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 04": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 21": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N8.I24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N8.I25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N8.I26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 27": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N9.E15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N9.I29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N9.I30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N9.I31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N9.I32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N9.I33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.C10.I36)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndWest Wall (G.C10.I37)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 25": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N14.I52)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N14.I53)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 20": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N24.I90)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N24.I91)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N24.I92)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 28": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N25.E53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N25.I93)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I94)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N25.I95)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I96)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I97)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.C26.I98)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndWest Wall (G.C26.I99)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 26": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N30.I106)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N30.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "MASS WALLS 09": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.SE33.I131)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MASS WALLS 08": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101South Wall (G.SE67.I265)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MASS WALLS 13": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102North Wall (G.NNE13.E19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 15": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 17": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 07": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102North Wall (G.NNE13.I78)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNE13.I79)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNE13.I80)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNE13.I81)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNE13.I82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNE13.I83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNE13.I84)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "MASS WALLS 12": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102North Wall (G.NNE26.E53)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 14": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 16": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "MASS WALLS 25": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102North Wall (G.NNE26.I151)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNE26.I152)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNE26.I153)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102South Wall (G.NNE26.I154)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102West Wall (G.NNE26.I155)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "102East Wall (G.NNE26.I156)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "102South Wall (G.NNE26.I157)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + } + }, + "5-8": { + "101South Wall (G.SSW1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSW1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSW1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSW35.E56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSW35.E57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSW35.E58)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SE37.E62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I179)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C4.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C38.E64)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Wall (G.WSW5.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.WSW5.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.WSW5.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.WSW5.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Wall (G.WSW39.E66)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.WSW39.E67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.WSW39.E68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.WSW39.E69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Wall (G.W6.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WSW Wall (G.W6.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Wall (G.W40.E71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WSW Wall (G.W40.E73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E43.I199)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E43.I200)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W11.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W11.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W11.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W45.E82)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W45.E83)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W45.E84)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.ESE12.E22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.E86)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.E87)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.ESE46.E88)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.I217)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E13.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E47.E90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.ENE14.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ENE14.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ENE14.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.ENE48.E92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ENE48.E93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ENE48.E94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W16.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W16.E29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W16.E30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W50.E98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W50.E99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W50.E100)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W50.I224)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S17.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S51.E102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S18.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S52.E104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S19.E33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S53.E106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.NW20.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NW20.E36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.NW20.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.NW54.E108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.E109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.E110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.NW54.E111)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.I229)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I230)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.NW54.I231)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.I233)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I234)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.N22.E39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "EWALL 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N22.E41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.N56.E115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "EWALL 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N56.E117)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N56.I236)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.N23.E42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.N57.E119)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N24.E43)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.N24.E44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N58.E121)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.N58.E122)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.C65.I262)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 11": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 10": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E66.I263)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.E55)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.E143)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I278)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I279)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I280)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I286)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I287)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SSW1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SSW14.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSE2.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SSE2.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSE15.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SSE15.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSE15.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSE15.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SW5.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SW5.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SW18.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SW18.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SW18.I102)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SW18.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.ESE7.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.ESE7.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.ESE20.E36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.ESE20.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.ESE20.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.ESE20.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 03": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 04": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 19": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 18": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 06": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 22": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 05": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 20": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I125)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I137)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I138)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I139)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C15.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C15.I69)EXT": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C49.E96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C49.I221)EXT": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WSW1.E1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WSW1.E2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW1.E3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WSW17.E31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WSW17.E32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW17.E33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S2.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S18.E35)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S3.E5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S19.E37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S4.E6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S20.E39)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E6.E9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E22.E44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.E22.I86)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.NE7.E10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE7.E11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.NE7.E12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.NE23.E46)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE23.E47)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.NE23.E48)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE23.I88)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N11.E16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N11.E17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N27.E56)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N27.E57)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N12.E18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N28.E59)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N13.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N13.E20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N13.E21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N29.E61)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N29.E62)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N29.E63)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N29.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WNW15.E23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW15.E24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WNW15.E25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WNW31.E67)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW31.E68)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WNW31.E69)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW31.I108)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WNW31.I109)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.E26)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.E28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.E71)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E72)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.E73)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E74)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E75)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I112)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SE5.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SE5.E8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SE21.E41)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SE21.E42)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W2.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W2.I5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W2.I6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W36.E60)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W36.I170)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W36.I171)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 23": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 23": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 17": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N25.I101)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C26.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.C26.I105)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C26.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 13": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 14": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 22": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W29.E49)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 08": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 11": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 06": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 24": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.NE44.I206)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 24": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N55.I235)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 16": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N59.I242)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N59.I243)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.C60.I246)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 12": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 15": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NNE61.I248)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 09": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W63.E132)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W63.I252)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 07": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 10": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 05": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I254)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I255)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I256)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I257)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.NE64.I258)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I259)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.S4.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.S6.E7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSE10.E13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 03": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.S17.E29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.S17.I98)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.S17.I99)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.S19.E34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.S19.I104)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSE23.E44)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 04": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 21": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 27": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N9.E15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N9.I30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N9.I31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.C10.I36)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.C10.I37)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 25": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 20": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N24.I91)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N24.I92)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 28": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N25.E53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N25.I93)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I94)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N25.I95)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I96)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 26": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.12115228852461588", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N30.I106)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N30.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 09": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 08": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 13": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNE13.E19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 15": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 17": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 07": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 12": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNE26.E53)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 14": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 16": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 25": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.08291457038717458", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNE26.I156)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNE26.I157)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "above_grade_wall_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor", + "value": "0.124", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_res", + "value": "0.064", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres", + "value": "0.084", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-9": { + "2ndFlr (G.WSW1.I1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.S2.I5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.S3.I7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.S4.I11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.E6.I15)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.NE7.I19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.N11.I39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.N12.I43)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.N13.I47)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.WNW15.I55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.SSE16.I59)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.SE5.I13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.N8.I23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.N9.I28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.C10.I35)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "2ndFlr (G.N14.I51)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + } + }, + "5-10": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-11": { + "101Flr (G.SSW1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.SE3.U3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.C4.U4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.WSW5.U5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.W6.U6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.C7.U7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.C8.U8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.E9.U9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.W11.U11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.ESE12.U12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.E13.U13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.ENE14.U14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.W16.U16)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.S17.U17)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.S18.U18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.S19.U19)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.NW20.U20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.N22.U22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.N23.U23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.N24.U24)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.C31.U31)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.E32.U32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.SSE34.U34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "GYMFlr (G.1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.SSW1.U1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.SSE2.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.SW5.U5)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.ESE7.U7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.ENE9.U9)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.W11.U11)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.NNW12.U12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.C15.U15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.C3.U3)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.W2.U2)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "" + }, + "101Flr (G.NE10.U10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.N21.U21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.N25.U25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.C26.U26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "surface_category", + "value": "UNREGULATED" + } + ], + "messages": "" + }, + "101Flr (G.NNE27.U27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.N28.U28)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.W29.U29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.NE30.U30)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.S4.U4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.S6.U6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.E8.U8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.SSE10.U10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "101Flr (G.SE33.U33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Flr (G.NNE13.U13)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "surface_category", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + } + }, + "5-12": { + "101Flr (G.SSW1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.SE3.U3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.C4.U4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.WSW5.U5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.W6.U6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.C7.U7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.C8.U8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.E9.U9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.W11.U11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.ESE12.U12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.E13.U13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.ENE14.U14)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.W16.U16)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.S17.U17)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.S18.U18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.S19.U19)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.NW20.U20)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.N22.U22)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.N23.U23)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.N24.U24)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.C31.U31)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.E32.U32)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.SSE34.U34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "GYMFlr (G.1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.SSW1.U1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.SSE2.U2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.SW5.U5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.ESE7.U7)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.ENE9.U9)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.W11.U11)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.NNW12.U12)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.C15.U15)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.C3.U3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.W2.U2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.NE10.U10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.N21.U21)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.N25.U25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.NNE27.U27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.N28.U28)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.W29.U29)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.NE30.U30)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.S4.U4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.S6.U6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.E8.U8)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.SSE10.U10)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "101Flr (G.SE33.U33)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + }, + "102Flr (G.NNE13.U13)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "slab_on_grade_floor_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor", + "value": "0.73", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "target_f_factor_res", + "value": "None" + }, + { + "variable": "target_f_factor_nonres", + "value": "None" + } + ], + "messages": "Baseline slab F-factor is not as expected for slabs that are less than 24\" below grade. verify that the slab is more than 24\" below grade and is unregulated. " + } + }, + "5-13": { + "101East Wall (G.SSW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSW1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSW1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.SSW1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSW35.I167)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSW35.I168)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSW35.I169)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE3.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SE3.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SE3.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SE3.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE3.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE3.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SE3.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.SE3.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SE3.E5)INT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE37.I172)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SE37.I173)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SE37.I174)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I175)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SE37.I176)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I177)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SE37.I178)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE37.I180)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I181)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE37.I182)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SE37.I183)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.C4.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.WSW5.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.WSW5.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.WSW5.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.WSW5.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.WSW5.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.WSW5.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.WSW39.I184)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.WSW39.I185)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.WSW39.I186)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.WSW39.I187)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.WSW39.I188)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W6.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W6.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W6.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W6.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W6.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.W6.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W40.I189)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W40.I190)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W40.I191)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W40.I192)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W40.I193)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C7.I34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.C7.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.C7.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C7.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.C7.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C41.I194)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.C41.I195)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.C41.I196)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C41.I197)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.C8.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E9.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E9.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E9.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E9.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E9.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E9.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.E9.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.E9.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.E9.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E43.I198)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E43.I201)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.E43.I202)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E43.I203)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.E43.I204)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.E43.I205)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W11.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W11.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W11.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W11.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W11.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W11.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W11.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.W11.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W45.I208)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W45.I209)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W45.I210)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W45.I211)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W45.I212)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.W45.I213)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.W45.I214)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.ESE12.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.ESE12.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.ESE12.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.ESE46.I215)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.ESE46.I216)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.E13.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.E13.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.E47.I218)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.ENE14.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.ENE14.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.ENE14.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.ENE48.I219)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.ENE48.I220)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W16.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W16.I73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.W16.I74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.W50.I223)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.S17.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.S18.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.S18.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.S18.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.S52.I225)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.S52.I226)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.S19.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S19.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.S19.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.S53.I227)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.S53.I228)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NW20.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.NW20.I84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.I85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NW20.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.NW20.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I232)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N22.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N22.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.N22.I93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N56.I237)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N23.I94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N23.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.N23.I96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N57.I238)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N57.I239)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N24.I97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N24.I98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.N24.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N58.I240)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.N58.I241)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C31.I124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.C31.I125)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.C31.I126)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.C31.I127)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C65.I260)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.C65.I261)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.E32.I128)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.E32.I129)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.E32.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.E66.I264)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I135)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I136)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I147)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.I154)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE34.I157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I158)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I159)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I160)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I161)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I162)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I163)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE34.I164)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE34.I165)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.SSE34.I166)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I266)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I267)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I268)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I269)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I270)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I271)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I272)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I273)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I274)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I275)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I276)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I277)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I281)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I282)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I283)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I284)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I285)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I288)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I289)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I290)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I291)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I292)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I293)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I294)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I295)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I296)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I297)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SSE68.I298)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSW1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSW1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSW1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSW1.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSW1.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSW1.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.SSW1.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSW14.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSW14.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSW14.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSW14.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSW14.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSW14.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSW14.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SSE2.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSE2.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSE2.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSE2.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSE2.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.SSE2.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSE15.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SSE15.I96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SSE15.I97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SW5.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SW5.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.SW5.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.SW5.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.SW5.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.SW18.I100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.SW18.I101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.ESE7.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.ESE7.I27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.ESE7.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.ESE7.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.ESE20.I105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.ENE9.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.W11.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW12.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW12.I73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW12.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW12.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.NNW12.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I114)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I115)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I117)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I121)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I122)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I123)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I126)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I127)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I128)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I129)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I131)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I132)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I134)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I135)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I136)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I141)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I145)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I146)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNW25.I147)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I148)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I149)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I150)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.C15.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.C15.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.C49.I222)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.C3.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.WSW1.I1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW1.I2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WSW1.I3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.WSW1.I4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW17.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WSW17.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.S2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.S2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.S3.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.S3.I8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.S3.I9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.S3.I10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.S19.I84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.S19.I85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.S4.I11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.S4.I12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.E6.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.E6.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.E6.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.E6.I18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.E22.I87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.NE7.I19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE7.I20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.NE7.I21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.NE7.I22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.NE23.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.N11.I39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N11.I40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N11.I41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.N11.I42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N27.I100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N27.I101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.N12.I43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N12.I44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N12.I45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.N12.I46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N28.I102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N28.I103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.N13.I47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N13.I48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N13.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.N13.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N29.I105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.WNW15.I55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW15.I56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WNW15.I57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.WNW15.I58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.SSE16.I59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE16.I64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE16.I66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE16.I68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.I76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE16.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.SSE16.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I113)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE32.I114)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I115)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE32.I116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I117)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.SSE32.I118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I121)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I122)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I123)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I124)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I125)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.I126)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I127)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I128)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.I129)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I130)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.SE5.I13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndCeiling (G.SE5.I14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.W2.I7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.NE10.I49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE10.I50)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N21.I89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N25.I100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N25.I102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Flr (G.C26.U26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "proposed_surface_type", + "value": "UNHEATED SLAB-ON-GRADE" + }, + { + "variable": "baseline_surface_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + }, + { + "variable": "proposed_surface_f_factor", + "value": "0.5955053845383405", + "unit": "Btu/(hr*ft*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NNE27.I108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NNE27.I109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N28.I111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N28.I112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.W29.I114)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NE30.I116)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NE30.I117)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE30.I118)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NE30.I119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE30.I120)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Wall (G.NE30.I121)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE30.I122)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.NE44.I207)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N59.I244)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.C60.I245)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.C60.I247)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NNE61.I249)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Wall (G.N62.I250)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.N62.I251)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I253)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.S4.I16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.S4.I17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.S6.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.E8.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.E8.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.E8.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.E21.I108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.E21.I109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.N8.I23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N8.I24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N8.I25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N8.I26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.N9.I28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N9.I29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N9.I32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N9.I33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.C10.I35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndFlr (G.N14.I51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "FLOOR" + }, + { + "variable": "proposed_surface_type", + "value": "FLOOR" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.08060000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N14.I52)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N14.I53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N24.I90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.C26.I98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Wall (G.C26.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE33.I131)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "6.670000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "6.670000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101Ceiling (G.SE33.I132)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Wall (G.SE67.I265)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNE13.I78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "6.670000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "6.670000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNE13.I79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNE13.I80)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNE13.I81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNE13.I82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNE13.I83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNE13.I84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102Ceiling (G.NNE13.I85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ROOF" + }, + { + "variable": "proposed_surface_type", + "value": "ROOF" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.8047000000000003", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Wall (G.NNE26.I151)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNE26.I152)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Wall (G.NNE26.I153)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.NNE26.I154)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Wall (G.NNE26.I155)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "baseline_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "proposed_surface_type", + "value": "ABOVE-GRADE WALL" + }, + { + "variable": "baseline_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "proposed_surface_u_factor", + "value": "0.14120000000000002", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-14": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:SCHOOL_UNIVERSITY missing:is_all_new" + } + } + }, + "5-15": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:SCHOOL_UNIVERSITY missing:is_all_new", + "BASELINE_0_MISSING_DATA": "id:SCHOOL_UNIVERSITY missing:is_all_new" + } + } + }, + "5-16": { + "101South Wall (G.SSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.SSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.SSW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.SSW35.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.SSW35.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.SSW35.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.SE3.I15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.SE37.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.SE37.I179)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.C4.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.C38.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101WNW Wall (G.WSW5.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.25", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.25", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.WSW5.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.WSW5.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.32", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.WSW5.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101WNW Wall (G.WSW39.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.297500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.297500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.WSW39.E67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.WSW39.E68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.WSW39.E69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101WNW Wall (G.W6.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.25", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.25", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101WSW Wall (G.W6.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "75.25", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "75.25", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E14)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W6.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101WNW Wall (G.W40.E71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.297500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.297500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101WSW Wall (G.W40.E73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "14.297500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "14.297500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W40.E75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.E43.I199)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.E43.I200)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W11.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "104.30000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "104.30000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W11.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "147.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "147.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.W11.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W45.E82)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "18.625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "18.625", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W45.E83)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "26.250000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "26.250000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.W45.E84)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "56.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ESE12.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.ESE12.E22)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.E86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.E87)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.ESE46.E88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ESE46.I217)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.E13.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "56.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.E47.E90)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.ENE14.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.32", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ENE14.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ENE14.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "56.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.ENE48.E92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ENE48.E93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.ENE48.E94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W16.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "83.25", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.W16.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.W16.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W50.E98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.W50.E99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.W50.E100)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.W50.I224)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.S17.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "186.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "168.6312", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.S51.E102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.S18.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "56.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.64", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.S52.E104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.S19.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "186.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "168.6312", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.S53.E106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.NW20.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.NW20.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.NW20.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.NW20.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.NW54.E108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.E109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.E110)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.NW54.E111)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.I229)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I230)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.NW54.I231)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.NW54.I233)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.NW54.I234)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.N22.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "242.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "219.27120000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "EWALL 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.N22.E41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.N56.E115)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "EWALL 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.N56.E117)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.N56.I236)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.N23.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "94.50000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "94.50000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.N57.E119)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "63.45", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "63.45", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.N24.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.N24.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "242.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "219.27120000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.N58.E121)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.N58.E122)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.C65.I262)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 11": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "24.375600000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "24.375600000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.E66.I263)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.E143)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I278)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I279)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.SSE68.I280)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.SSE68.I286)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.SSE68.I287)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "2279.7", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "2279.7", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "The vertical fenestration is not distributed across baseline opaque surfaces in the same proportion as in the proposed design. Verify if envelope is existing or altered and can be excluded from this check." + }, + "GYMEast Wall (G.1.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMNorth Wall (G.1.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMWest Wall (G.1.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMEast Wall (G.1.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "GYMSouth Wall (G.1.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.SSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "186.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "168.6312", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.SSW14.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.SSE2.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.SSE2.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.SSE15.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.SSE15.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.SSE15.I93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102North Wall (G.SSE15.I94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.SW5.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102West Wall (G.SW5.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.SW18.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102West Wall (G.SW18.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102North Wall (G.SW18.I102)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102West Wall (G.SW18.I103)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.ESE7.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.ESE7.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.ESE20.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.ESE20.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.ESE20.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102West Wall (G.ESE20.I107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 03": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 04": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "79.92", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "79.92", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 19": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "21.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "21.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 18": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 06": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 22": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 05": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 20": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.NNW25.I125)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102North Wall (G.NNW25.I138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.NNW25.I139)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.C15.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.C15.I69)EXT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.C49.E96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.C49.I221)EXT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WSW1.E1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WSW1.E2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW1.E3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WSW17.E31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WSW17.E32)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WSW17.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S2.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "186.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "168.6312", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S18.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S3.E5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "56.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "50.64", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S19.E37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S4.E6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "186.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "168.6312", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.S20.E39)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E6.E9)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E22.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.E22.I86)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.NE7.E10)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE7.E11)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.NE7.E12)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "46.620000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "42.1578", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.NE23.E46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE23.E47)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.NE23.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.NE23.I88)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N11.E16)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N11.E17)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "242.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "219.27120000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N27.E56)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N27.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N12.E18)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "125.80000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "125.80000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N28.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N13.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "242.48000000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "219.27120000000002", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N13.E20)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N13.E21)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N29.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N29.E62)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N29.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N29.I104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WNW15.E23)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW15.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WNW15.E25)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "46.620000000000005", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "42.1578", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.WNW31.E67)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW31.E68)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.WNW31.E69)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.WNW31.I108)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.WNW31.I109)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.E26)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE16.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "93.24000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "84.3156", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE16.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.E71)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E72)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SSE32.E73)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E74)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SSE32.E75)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.SSE32.I112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SE5.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SE5.E8)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.SE21.E41)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.SE21.E42)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W2.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "153.3", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "153.3", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.W2.I5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.W2.I6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W36.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "45.99", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "45.99", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.W36.I170)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.W36.I171)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 23": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 23": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "116.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "116.00000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "The vertical fenestration is not distributed across baseline opaque surfaces in the same proportion as in the proposed design. Verify if envelope is existing or altered and can be excluded from this check." + }, + "SEMI HEAT WALL 17": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.N25.I101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.C26.I104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.C26.I105)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.C26.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 13": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 14": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 22": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "115.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "The vertical fenestration is not distributed across baseline opaque surfaces in the same proportion as in the proposed design. Verify if envelope is existing or altered and can be excluded from this check." + }, + "101West Wall (G.W29.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 08": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 11": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 06": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "24.375600000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "24.375600000000006", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 24": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.NE44.I206)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 24": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.52", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.52", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.N55.I235)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 16": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.N59.I242)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.N59.I243)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.C60.I246)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 12": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 15": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.NNE61.I248)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 09": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "54.05000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "54.05000000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101West Wall (G.W63.E132)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.W63.I252)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 07": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 05": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I254)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I255)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101South Wall (G.NE64.I256)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I257)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101North Wall (G.NE64.I258)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "101East Wall (G.NE64.I259)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.S4.E4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "133.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "133.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.S6.E7)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.SSE10.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 03": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.S17.E29)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.S17.I98)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102West Wall (G.S17.I99)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.S19.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102West Wall (G.S19.I104)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.SSE23.E44)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 04": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 21": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "106.37500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "106.37500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 27": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N9.E15)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N9.I30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N9.I31)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.C10.I36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.C10.I37)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 25": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "106.37500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "106.37500000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 20": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N24.I91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndNorth Wall (G.N24.I92)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 28": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N25.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N25.I93)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I94)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndWest Wall (G.N25.I95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N25.I96)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 26": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndSouth Wall (G.N30.I106)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "2ndEast Wall (G.N30.I107)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 09": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "48.75120000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "48.75120000000001", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 08": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 13": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "21.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "21.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102North Wall (G.NNE13.E19)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.32", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 15": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 17": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "28.000000000000004", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "25.32", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 07": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 12": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102North Wall (G.NNE26.E53)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 14": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 16": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "MASS WALLS 25": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102East Wall (G.NNE26.I156)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + }, + "102South Wall (G.NNE26.I157)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_fenestration_area_surface_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_b", + "value": "7993.259899999997", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_surface_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_fenestration_area_p", + "value": "7286.809199999995", + "unit": "ft2" + } + ], + "messages": "" + } + }, + "5-17": { + "148 KINDERGARTEN ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "148 KINDERGARTEN PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1V-3 MAIN LOBBY ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "100 WAITING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "100 WAITING PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101 MAIN OFF 01 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101 MAIN OFF 01 PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101C CONF RM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101C CONF RM PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101A OFFICE ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101A OFFICE PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-1 CORR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-1 CORR PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "102, 102A, 103A, 140A OFF ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM Z": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "103 MEDIA ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "103 MEDIA PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104B ELL/READING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104B ELL/READING PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104C ELL/READING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104C ELL/READING PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104D ELL/READING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104D ELL/READING PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "111 SCIENCE CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "111 SCIENCE CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "113 & 115 1ST CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "113 & 115 1ST CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "117 RESOURCE ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "117 RESOURCE PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "119 & 121 2ND CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "119 & 121 2ND CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "110 ART CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "110 ART CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "112 & 114 1ST CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "112 & 114 1ST CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "116 RESOURCE ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "116 RESOURCE PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "118 & 120 2ND CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "118 & 120 2ND CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124B KITCH OFF ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124B KITCH OFF PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124C CUST OFF ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124C CUST OFF PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-3 TO 7 CORR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-3 TO 7 CORR PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "140 GYM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "143 & 144 Kindergarten ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "143 & 144 Kindergarten PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "141 Kindergardten ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "141 Kindergardten PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "139 Pre-K ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "139 Pre-K PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "137 Pre-K ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "137 Pre-K PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "135 Music ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "135 Music PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "128A Faculty ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "128A Faculty PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-8, 9 & 10 Corr ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "103D WORK RM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "103D WORK RM PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "142 Data ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "142 Data PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "201 ELL/READING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "201 ELL/READING PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "205 & 207 3RD CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "205 & 207 3RD CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "209 RESOURCE ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "209 RESOURCE PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "211 & 213 4TH CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "211 & 213 4TH CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "216 COPY ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "216 COPY PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "218 OFF ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "218 OFF PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "210 & 212 4TH CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "210 & 212 4TH CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "208 RESOURCE ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "208 RESOURCE PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "204 & 206 3RD CLASS ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "204 & 206 3RD CLASS PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "200 RESOURCE ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "200 RESOURCE PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2C-1 & 3 CORR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2C-1 & 3 CORR PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "219 DATA ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "219 DATA PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1V-1 & 2 VEST ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1V-1 & 2 VEST PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "150 EXT STOR PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S1-1 STAIR 1 PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "112A WATER PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "122 ELEC PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2-1 STAIR 2 PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "111A STOR PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124 RECEIVING PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1-V4 Vest PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "137b Exit PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "136 Stor PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "129 Stor PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV 02 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2-2 STAIR 2 PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "214 MECH PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV 02 PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S1-2 STAIR PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "126 KITCHEN ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "126 KITCHEN PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "127 cafeteria ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "127 cafeteria PLNM ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-18": { + "101South Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.SSW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "101South Win (G.SSW1.E1.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.SSW1.E1.W2) missing:dynamic_glazing_type" + } + }, + "101WNW Win (G.WSW5.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.WSW5.E7.W1) missing:dynamic_glazing_type" + } + }, + "101South Win (G.WSW5.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.WSW5.E9.W1) missing:dynamic_glazing_type" + } + }, + "101WNW Win (G.WSW39.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.WSW39.E66.W1) missing:dynamic_glazing_type" + } + }, + "101WNW Win (G.W6.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.W6.E11.W1) missing:dynamic_glazing_type" + } + }, + "101WSW Win (G.W6.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WSW Win (G.W6.E13.W1) missing:dynamic_glazing_type" + } + }, + "101WNW Win (G.W40.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.W40.E71.W1) missing:dynamic_glazing_type" + } + }, + "101WSW Win (G.W40.E73.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WSW Win (G.W40.E73.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W11.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W11.E17.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W11.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W11.E18.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W45.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W45.E82.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W45.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W45.E83.W1) missing:dynamic_glazing_type" + } + }, + "101East Win (G.ESE12.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.ESE12.E20.W1) missing:dynamic_glazing_type" + } + }, + "101East Win (G.E13.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.E13.E23.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.ENE14.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.ENE14.E24.W1) missing:dynamic_glazing_type" + } + }, + "101East Win (G.ENE14.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.ENE14.E26.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W16.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W16.E28.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W16.E28.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W16.E28.W2) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S17.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W1) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S17.E31.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W2) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S17.E31.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W3) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S17.E31.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W4) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S18.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S18.E32.W1) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S18.E32.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S18.E32.W2) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S19.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W1) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S19.E33.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W2) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S19.E33.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W3) missing:dynamic_glazing_type" + } + }, + "101South Win (G.S19.E33.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W4) missing:dynamic_glazing_type" + } + }, + "101West Win (G.NW20.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.NW20.E34.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.NW20.E34.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.NW20.E34.W2) missing:dynamic_glazing_type" + } + }, + "101North Win (G.NW20.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.NW20.E37.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.NW20.E37.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.NW20.E37.W2) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N22.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N22.E39.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W2) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N22.E39.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W3) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N22.E39.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W4) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N22.E39.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W5) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N22.E39.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W6) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N23.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N23.E42.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N57.E119.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N57.E119.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N24.E44.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N24.E44.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W2) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N24.E44.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W3) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N24.E44.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W4) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N24.E44.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W5) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N24.E44.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W6) missing:dynamic_glazing_type" + } + }, + "101East Win (G.E32.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.E32.E53.W1) missing:dynamic_glazing_type" + } + }, + "102West Win (G.NNE13.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Win (G.NNE13.E18.W1) missing:dynamic_glazing_type" + } + }, + "102West Door (G.NNE13.E18.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Door (G.NNE13.E18.D1) missing:dynamic_glazing_type" + } + }, + "102North Win (G.NNE13.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102North Win (G.NNE13.E19.W1) missing:dynamic_glazing_type" + } + }, + "102South Win (G.NNE13.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.NNE13.E21.W1) missing:dynamic_glazing_type" + } + }, + "101East Win (G.SE33.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.SE33.E54.W1) missing:dynamic_glazing_type" + } + }, + "101East Win (G.SE33.E54.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.SE33.E54.W2) missing:dynamic_glazing_type" + } + }, + "101East Door (G.SSE34.E55.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Door (G.SSE34.E55.D1) missing:dynamic_glazing_type" + } + }, + "GYMNorth Win (G.1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:GYMNorth Win (G.1.E4.W1) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SSW1.E1.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W2) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SSW1.E1.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W3) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SSW1.E1.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W4) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SSE2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSE2.E3.W1) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SSE2.E3.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSE2.E3.W2) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SW5.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SW5.E5.W1) missing:dynamic_glazing_type" + } + }, + "102South Win (G.SW5.E5.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SW5.E5.W2) missing:dynamic_glazing_type" + } + }, + "102South Win (G.ESE7.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.ESE7.E9.W1) missing:dynamic_glazing_type" + } + }, + "102South Win (G.ESE7.E9.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.ESE7.E9.W2) missing:dynamic_glazing_type" + } + }, + "102East Win (G.ENE22.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Win (G.ENE22.E42.W1) missing:dynamic_glazing_type" + } + }, + "102East Win (G.ENE22.E42.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Win (G.ENE22.E42.W2) missing:dynamic_glazing_type" + } + }, + "102East Win (G.ENE22.E42.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Win (G.ENE22.E42.W3) missing:dynamic_glazing_type" + } + }, + "102West Win (G.W11.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Win (G.W11.E15.W1) missing:dynamic_glazing_type" + } + }, + "102West Door (G.W11.E15.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Door (G.W11.E15.D1) missing:dynamic_glazing_type" + } + }, + "102East Door (G.NNW12.E16.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Door (G.NNW12.E16.D1) missing:dynamic_glazing_type" + } + }, + "102North Door (G.NNW12.E17.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102North Door (G.NNW12.E17.D1) missing:dynamic_glazing_type" + } + }, + "2ndWest Win (G.WSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WSW1.E1.W1) missing:dynamic_glazing_type" + } + }, + "2ndWest Win (G.WSW1.E1.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WSW1.E1.W2) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S2.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W1) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S2.E4.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W2) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S2.E4.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W3) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S2.E4.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W4) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S3.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S3.E5.W1) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S3.E5.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S3.E5.W2) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S4.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W1) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S4.E6.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W2) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S4.E6.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W3) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.S4.E6.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W4) missing:dynamic_glazing_type" + } + }, + "2ndEast Door (G.E6.E9.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndEast Door (G.E6.E9.D1) missing:dynamic_glazing_type" + } + }, + "2ndEast Win (G.NE7.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndEast Win (G.NE7.E12.W1) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N11.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W1) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N11.E17.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W2) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N11.E17.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W3) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N11.E17.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W4) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N11.E17.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W5) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N11.E17.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W6) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N12.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N12.E18.W1) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N13.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W1) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N13.E19.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W2) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N13.E19.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W3) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N13.E19.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W4) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N13.E19.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W5) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N13.E19.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W6) missing:dynamic_glazing_type" + } + }, + "2ndWest Win (G.WNW15.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WNW15.E23.W1) missing:dynamic_glazing_type" + } + }, + "2ndWest Win (G.WNW15.E23.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WNW15.E23.W2) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.WNW15.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.WNW15.E25.W1) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.SSE16.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.SSE16.E29.W1) missing:dynamic_glazing_type" + } + }, + "2ndSouth Win (G.SSE16.E29.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.SSE16.E29.W2) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W2.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W2.E4.W1) missing:dynamic_glazing_type" + } + }, + "101West Win (G.W36.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W36.E60.W1) missing:dynamic_glazing_type" + } + }, + "101North Door (G.NE10.E16.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.NE10.E16.D1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N21.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N21.E38.W1) missing:dynamic_glazing_type" + } + }, + "101North Door (G.N25.E45.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.N25.E45.D1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N28.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N28.E48.W1) missing:dynamic_glazing_type" + } + }, + "101North Door (G.NE30.E50.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.NE30.E50.D1) missing:dynamic_glazing_type" + } + }, + "101North Door (G.NE30.E50.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.NE30.E50.D2) missing:dynamic_glazing_type" + } + }, + "101East Win (G.NE30.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.NE30.E52.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N55.E113.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N55.E113.W1) missing:dynamic_glazing_type" + } + }, + "101North Win (G.N62.E130.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N62.E130.W1) missing:dynamic_glazing_type" + } + }, + "102South Win (G.S4.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.S4.E4.W1) missing:dynamic_glazing_type" + } + }, + "102South Door (G.S6.E7.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Door (G.S6.E7.D1) missing:dynamic_glazing_type" + } + }, + "102East Door (G.E8.E10.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Door (G.E8.E10.D1) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N8.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N8.E13.W1) missing:dynamic_glazing_type" + } + }, + "2ndNorth Win (G.N14.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N14.E22.W1) missing:dynamic_glazing_type" + } + } + }, + "5-19": { + "101South Win (G.SSW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.SSW1.E1.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Win (G.WSW5.E7.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.WSW5.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Win (G.WSW39.E66.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Win (G.W6.E11.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WSW Win (G.W6.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WNW Win (G.W40.E71.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101WSW Win (G.W40.E73.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W11.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W11.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W45.E82.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W45.E83.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Win (G.ESE12.E20.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Win (G.E13.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.ENE14.E24.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Win (G.ENE14.E26.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W16.E28.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W16.E28.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S18.E32.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S18.E32.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.NW20.E34.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.NW20.E34.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.NW20.E37.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.NW20.E37.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N23.E42.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N57.E119.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Win (G.E32.E53.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.E55)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "GYMNorth Win (G.1.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SSE2.E3.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SSE2.E3.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SW5.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.SW5.E5.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.ESE7.E9.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.ESE7.E9.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Win (G.W11.E15.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MASS WALLS 22": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndWest Win (G.WSW1.E1.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Win (G.WSW1.E1.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S3.E5.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S3.E5.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E6.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndEast Win (G.NE7.E12.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N12.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W3)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W4)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W5)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W6)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Win (G.WNW15.E23.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndWest Win (G.WNW15.E23.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.WNW15.E25.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.SSE16.E29.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndSouth Win (G.SSE16.E29.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W2.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "1.22", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101West Win (G.W36.E60.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "1.22", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "MASS WALLS 23": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Win (G.N21.E38.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 17": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Win (G.N28.E48.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 08": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101East Win (G.NE30.E52.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N55.E113.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "1.22", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101North Win (G.N62.E130.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "1.22", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.S4.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Wall (G.S6.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "SEMI HEAT WALL 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndNorth Win (G.N8.E13.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N14.E22.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Win (G.SE33.E54.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "101East Win (G.SE33.E54.W2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102West Win (G.NNE13.E18.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.4415428107593698", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102North Win (G.NNE13.E19.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + }, + "102South Win (G.NNE13.E21.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "target_u_factor", + "value": "0.57", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "subsurface_u_factor", + "value": "0.44154281075936974", + "unit": "Btu/(hr*ft2*R)" + } + ], + "messages": "" + } + }, + "5-20": { + "101South Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.SSW1.E1.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101WNW Win (G.WSW5.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.WSW5.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101WNW Win (G.WSW39.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101WNW Win (G.W6.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101WSW Win (G.W6.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101WNW Win (G.W40.E71.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101WSW Win (G.W40.E73.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.W11.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.W11.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.W45.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.W45.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101East Win (G.ESE12.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101East Win (G.E13.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.ENE14.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101East Win (G.ENE14.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.W16.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.W16.E28.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S18.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S18.E32.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.NW20.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.NW20.E34.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.NW20.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.NW20.E37.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N23.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N57.E119.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101East Win (G.E32.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101East Wall (G.SSE34.E55)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101East Door (G.SSE34.E55.D1) missing:solar_heat_gain_coefficient" + } + }, + "GYMNorth Win (G.1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SSE2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SSE2.E3.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SW5.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.SW5.E5.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.ESE7.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.ESE7.E9.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MASS WALLS 19": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102West Door (G.W11.E15.D1) missing:solar_heat_gain_coefficient" + } + }, + "MASS WALLS 06": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102East Door (G.NNW12.E16.D1) missing:solar_heat_gain_coefficient" + } + }, + "MASS WALLS 22": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102North Door (G.NNW12.E17.D1) missing:solar_heat_gain_coefficient" + } + }, + "2ndWest Win (G.WSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndWest Win (G.WSW1.E1.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S3.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S3.E5.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndEast Wall (G.E6.E9)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:2ndEast Door (G.E6.E9.D1) missing:solar_heat_gain_coefficient" + } + }, + "2ndEast Win (G.NE7.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N12.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndWest Win (G.WNW15.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndWest Win (G.WNW15.E23.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.WNW15.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.SSE16.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndSouth Win (G.SSE16.E29.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101West Win (G.W2.E4.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.4" + } + ], + "messages": "" + }, + "101West Win (G.W36.E60.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.4" + } + ], + "messages": "" + }, + "MASS WALLS 23": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE10.E16.D1) missing:solar_heat_gain_coefficient" + } + }, + "101North Win (G.N21.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 17": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101North Door (G.N25.E45.D1) missing:solar_heat_gain_coefficient" + } + }, + "101North Win (G.N28.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "SEMI HEAT WALL 08": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE30.E50.D1) missing:solar_heat_gain_coefficient; id:101North Door (G.NE30.E50.D2) missing:solar_heat_gain_coefficient" + } + }, + "101East Win (G.NE30.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101North Win (G.N55.E113.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.4" + } + ], + "messages": "" + }, + "101North Win (G.N62.E130.W1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.4" + } + ], + "messages": "" + }, + "102South Win (G.S4.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Wall (G.S6.E7)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102South Door (G.S6.E7.D1) missing:solar_heat_gain_coefficient" + } + }, + "SEMI HEAT WALL 02": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102East Door (G.E8.E10.D1) missing:solar_heat_gain_coefficient" + } + }, + "2ndNorth Win (G.N8.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N14.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101East Win (G.SE33.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "101East Win (G.SE33.E54.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "MASS WALLS 13": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102West Door (G.NNE13.E18.D1) missing:solar_heat_gain_coefficient" + } + }, + "102North Win (G.NNE13.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + }, + "102South Win (G.NNE13.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "subsurface_shgc", + "value": "0.391304347826087" + }, + { + "variable": "target_shgc", + "value": "0.39" + } + ], + "messages": "" + } + }, + "5-21": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-22": { + "101South Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.SSW1.E1.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101WNW Win (G.WSW5.E7.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.WSW5.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101WNW Win (G.WSW39.E66.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101WNW Win (G.W6.E11.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101WSW Win (G.W6.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101WNW Win (G.W40.E71.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101WSW Win (G.W40.E73.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W11.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W11.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W45.E82.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W45.E83.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101East Win (G.ESE12.E20.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101East Win (G.E13.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.ENE14.E24.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101East Win (G.ENE14.E26.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W16.E28.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W16.E28.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S17.E31.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S18.E32.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S18.E32.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101South Win (G.S19.E33.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.NW20.E34.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.NW20.E34.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.NW20.E37.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.NW20.E37.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N22.E39.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N23.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N57.E119.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N24.E44.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101East Win (G.E32.E53.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101East Door (G.SSE34.E55.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101East Door (G.SSE34.E55.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "GYMNorth Win (G.1.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SSW1.E1.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SSE2.E3.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SSE2.E3.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SW5.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.SW5.E5.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.ESE7.E9.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.ESE7.E9.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102East Win (G.ENE22.E42.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102West Win (G.W11.E15.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102West Door (G.W11.E15.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102West Door (G.W11.E15.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "102East Door (G.NNW12.E16.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102East Door (G.NNW12.E16.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "102North Door (G.NNW12.E17.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102North Door (G.NNW12.E17.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "2ndWest Win (G.WSW1.E1.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndWest Win (G.WSW1.E1.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S2.E4.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S3.E5.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S3.E5.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.S4.E6.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndEast Door (G.E6.E9.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:2ndEast Door (G.E6.E9.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "2ndEast Win (G.NE7.E12.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N11.E17.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N12.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W3)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W4)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W5)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N13.E19.W6)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndWest Win (G.WNW15.E23.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndWest Win (G.WNW15.E23.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.WNW15.E25.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.SSE16.E29.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndSouth Win (G.SSE16.E29.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W2.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101West Win (G.W36.E60.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Door (G.NE10.E16.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE10.E16.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "101North Win (G.N21.E38.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Door (G.N25.E45.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101North Door (G.N25.E45.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "101North Win (G.N28.E48.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Door (G.NE30.E50.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE30.E50.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "101North Door (G.NE30.E50.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE30.E50.D2) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "101East Win (G.NE30.E52.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N55.E113.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101North Win (G.N62.E130.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.S4.E4.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Door (G.S6.E7.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102South Door (G.S6.E7.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "102East Door (G.E8.E10.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102East Door (G.E8.E10.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "2ndNorth Win (G.N8.E13.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "2ndNorth Win (G.N14.E22.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101East Win (G.SE33.E54.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "101East Win (G.SE33.E54.W2)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102West Win (G.NNE13.E18.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102West Door (G.NNE13.E18.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102West Door (G.NNE13.E18.D1) missing:has_shading_overhang,has_shading_sidefins" + } + }, + "102North Win (G.NNE13.E19.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + }, + "102South Win (G.NNE13.E21.W1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "has_shading_overhang", + "value": "False" + }, + { + "variable": "has_shading_sidefins", + "value": "False" + }, + { + "variable": "depth_of_overhang", + "value": "None" + } + ], + "messages": "" + } + }, + "5-23": { + "101South Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.SSW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.SSW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "101South Win (G.SSW1.E1.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.SSW1.E1.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.SSW1.E1.W2) missing:has_manual_interior_shades" + } + }, + "101WNW Win (G.WSW5.E7.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.WSW5.E7.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101WNW Win (G.WSW5.E7.W1) missing:has_manual_interior_shades" + } + }, + "101South Win (G.WSW5.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.WSW5.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.WSW5.E9.W1) missing:has_manual_interior_shades" + } + }, + "101WNW Win (G.WSW39.E66.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.WSW39.E66.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101WNW Win (G.WSW39.E66.W1) missing:has_manual_interior_shades" + } + }, + "101WNW Win (G.W6.E11.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.W6.E11.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101WNW Win (G.W6.E11.W1) missing:has_manual_interior_shades" + } + }, + "101WSW Win (G.W6.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WSW Win (G.W6.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101WSW Win (G.W6.E13.W1) missing:has_manual_interior_shades" + } + }, + "101WNW Win (G.W40.E71.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WNW Win (G.W40.E71.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101WNW Win (G.W40.E71.W1) missing:has_manual_interior_shades" + } + }, + "101WSW Win (G.W40.E73.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101WSW Win (G.W40.E73.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101WSW Win (G.W40.E73.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W11.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W11.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W11.E17.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W11.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W11.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W11.E18.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W45.E82.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W45.E82.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W45.E82.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W45.E83.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W45.E83.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W45.E83.W1) missing:has_manual_interior_shades" + } + }, + "101East Win (G.ESE12.E20.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.ESE12.E20.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Win (G.ESE12.E20.W1) missing:has_manual_interior_shades" + } + }, + "101East Win (G.E13.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.E13.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Win (G.E13.E23.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.ENE14.E24.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.ENE14.E24.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.ENE14.E24.W1) missing:has_manual_interior_shades" + } + }, + "101East Win (G.ENE14.E26.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.ENE14.E26.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Win (G.ENE14.E26.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W16.E28.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W16.E28.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W16.E28.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W16.E28.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W16.E28.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W16.E28.W2) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S17.E31.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S17.E31.W1) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S17.E31.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S17.E31.W2) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S17.E31.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S17.E31.W3) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S17.E31.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S17.E31.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S17.E31.W4) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S18.E32.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S18.E32.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S18.E32.W1) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S18.E32.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S18.E32.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S18.E32.W2) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S19.E33.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S19.E33.W1) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S19.E33.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S19.E33.W2) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S19.E33.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S19.E33.W3) missing:has_manual_interior_shades" + } + }, + "101South Win (G.S19.E33.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101South Win (G.S19.E33.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101South Win (G.S19.E33.W4) missing:has_manual_interior_shades" + } + }, + "101West Win (G.NW20.E34.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.NW20.E34.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.NW20.E34.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.NW20.E34.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.NW20.E34.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.NW20.E34.W2) missing:has_manual_interior_shades" + } + }, + "101North Win (G.NW20.E37.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.NW20.E37.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.NW20.E37.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.NW20.E37.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.NW20.E37.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.NW20.E37.W2) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N22.E39.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N22.E39.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N22.E39.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N22.E39.W2) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N22.E39.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N22.E39.W3) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N22.E39.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N22.E39.W4) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N22.E39.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W5) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N22.E39.W5) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N22.E39.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N22.E39.W6) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N22.E39.W6) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N23.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N23.E42.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N23.E42.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N57.E119.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N57.E119.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N57.E119.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N24.E44.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N24.E44.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N24.E44.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N24.E44.W2) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N24.E44.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N24.E44.W3) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N24.E44.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N24.E44.W4) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N24.E44.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W5) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N24.E44.W5) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N24.E44.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N24.E44.W6) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N24.E44.W6) missing:has_manual_interior_shades" + } + }, + "101East Win (G.E32.E53.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.E32.E53.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Win (G.E32.E53.W1) missing:has_manual_interior_shades" + } + }, + "101East Door (G.SSE34.E55.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Door (G.SSE34.E55.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Door (G.SSE34.E55.D1) missing:has_manual_interior_shades" + } + }, + "GYMNorth Win (G.1.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:GYMNorth Win (G.1.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:GYMNorth Win (G.1.E4.W1) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SSW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SSW1.E1.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SSW1.E1.W2) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SSW1.E1.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SSW1.E1.W3) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SSW1.E1.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSW1.E1.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SSW1.E1.W4) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SSE2.E3.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSE2.E3.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SSE2.E3.W1) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SSE2.E3.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SSE2.E3.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SSE2.E3.W2) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SW5.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SW5.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SW5.E5.W1) missing:has_manual_interior_shades" + } + }, + "102South Win (G.SW5.E5.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.SW5.E5.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.SW5.E5.W2) missing:has_manual_interior_shades" + } + }, + "102South Win (G.ESE7.E9.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.ESE7.E9.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.ESE7.E9.W1) missing:has_manual_interior_shades" + } + }, + "102South Win (G.ESE7.E9.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.ESE7.E9.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.ESE7.E9.W2) missing:has_manual_interior_shades" + } + }, + "102East Win (G.ENE22.E42.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Win (G.ENE22.E42.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102East Win (G.ENE22.E42.W1) missing:has_manual_interior_shades" + } + }, + "102East Win (G.ENE22.E42.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Win (G.ENE22.E42.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102East Win (G.ENE22.E42.W2) missing:has_manual_interior_shades" + } + }, + "102East Win (G.ENE22.E42.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Win (G.ENE22.E42.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102East Win (G.ENE22.E42.W3) missing:has_manual_interior_shades" + } + }, + "102West Win (G.W11.E15.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Win (G.W11.E15.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102West Win (G.W11.E15.W1) missing:has_manual_interior_shades" + } + }, + "102West Door (G.W11.E15.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Door (G.W11.E15.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102West Door (G.W11.E15.D1) missing:has_manual_interior_shades" + } + }, + "102East Door (G.NNW12.E16.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Door (G.NNW12.E16.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102East Door (G.NNW12.E16.D1) missing:has_manual_interior_shades" + } + }, + "102North Door (G.NNW12.E17.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102North Door (G.NNW12.E17.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102North Door (G.NNW12.E17.D1) missing:has_manual_interior_shades" + } + }, + "2ndWest Win (G.WSW1.E1.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WSW1.E1.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndWest Win (G.WSW1.E1.W1) missing:has_manual_interior_shades" + } + }, + "2ndWest Win (G.WSW1.E1.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WSW1.E1.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndWest Win (G.WSW1.E1.W2) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S2.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W1) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S2.E4.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W2) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S2.E4.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W3) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S2.E4.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S2.E4.W4) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S3.E5.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S3.E5.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S3.E5.W1) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S3.E5.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S3.E5.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S3.E5.W2) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S4.E6.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W1) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S4.E6.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W2) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S4.E6.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W3) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.S4.E6.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.S4.E6.W4) missing:has_manual_interior_shades" + } + }, + "2ndEast Door (G.E6.E9.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndEast Door (G.E6.E9.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndEast Door (G.E6.E9.D1) missing:has_manual_interior_shades" + } + }, + "2ndEast Win (G.NE7.E12.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndEast Win (G.NE7.E12.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndEast Win (G.NE7.E12.W1) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N11.E17.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W1) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N11.E17.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W2) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N11.E17.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W3) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N11.E17.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W4) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N11.E17.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W5) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W5) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N11.E17.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W6) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N11.E17.W6) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N12.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N12.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N12.E18.W1) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N13.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W1) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N13.E19.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W2) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N13.E19.W3)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W3) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W3) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N13.E19.W4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W4) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W4) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N13.E19.W5)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W5) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W5) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N13.E19.W6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W6) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N13.E19.W6) missing:has_manual_interior_shades" + } + }, + "2ndWest Win (G.WNW15.E23.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WNW15.E23.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndWest Win (G.WNW15.E23.W1) missing:has_manual_interior_shades" + } + }, + "2ndWest Win (G.WNW15.E23.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndWest Win (G.WNW15.E23.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndWest Win (G.WNW15.E23.W2) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.WNW15.E25.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.WNW15.E25.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.WNW15.E25.W1) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.SSE16.E29.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.SSE16.E29.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.SSE16.E29.W1) missing:has_manual_interior_shades" + } + }, + "2ndSouth Win (G.SSE16.E29.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndSouth Win (G.SSE16.E29.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndSouth Win (G.SSE16.E29.W2) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W2.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W2.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W2.E4.W1) missing:has_manual_interior_shades" + } + }, + "101West Win (G.W36.E60.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101West Win (G.W36.E60.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101West Win (G.W36.E60.W1) missing:has_manual_interior_shades" + } + }, + "101North Door (G.NE10.E16.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.NE10.E16.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE10.E16.D1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N21.E38.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N21.E38.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N21.E38.W1) missing:has_manual_interior_shades" + } + }, + "101North Door (G.N25.E45.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.N25.E45.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Door (G.N25.E45.D1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N28.E48.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N28.E48.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N28.E48.W1) missing:has_manual_interior_shades" + } + }, + "101North Door (G.NE30.E50.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.NE30.E50.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE30.E50.D1) missing:has_manual_interior_shades" + } + }, + "101North Door (G.NE30.E50.D2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Door (G.NE30.E50.D2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Door (G.NE30.E50.D2) missing:has_manual_interior_shades" + } + }, + "101East Win (G.NE30.E52.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.NE30.E52.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Win (G.NE30.E52.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N55.E113.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N55.E113.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N55.E113.W1) missing:has_manual_interior_shades" + } + }, + "101North Win (G.N62.E130.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101North Win (G.N62.E130.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101North Win (G.N62.E130.W1) missing:has_manual_interior_shades" + } + }, + "102South Win (G.S4.E4.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.S4.E4.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.S4.E4.W1) missing:has_manual_interior_shades" + } + }, + "102South Door (G.S6.E7.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Door (G.S6.E7.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Door (G.S6.E7.D1) missing:has_manual_interior_shades" + } + }, + "102East Door (G.E8.E10.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102East Door (G.E8.E10.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102East Door (G.E8.E10.D1) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N8.E13.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N8.E13.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N8.E13.W1) missing:has_manual_interior_shades" + } + }, + "2ndNorth Win (G.N14.E22.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndNorth Win (G.N14.E22.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:2ndNorth Win (G.N14.E22.W1) missing:has_manual_interior_shades" + } + }, + "101East Win (G.SE33.E54.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.SE33.E54.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Win (G.SE33.E54.W1) missing:has_manual_interior_shades" + } + }, + "101East Win (G.SE33.E54.W2)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101East Win (G.SE33.E54.W2) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:101East Win (G.SE33.E54.W2) missing:has_manual_interior_shades" + } + }, + "102West Win (G.NNE13.E18.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Win (G.NNE13.E18.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102West Win (G.NNE13.E18.W1) missing:has_manual_interior_shades" + } + }, + "102West Door (G.NNE13.E18.D1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102West Door (G.NNE13.E18.D1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102West Door (G.NNE13.E18.D1) missing:has_manual_interior_shades" + } + }, + "102North Win (G.NNE13.E19.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102North Win (G.NNE13.E19.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102North Win (G.NNE13.E19.W1) missing:has_manual_interior_shades" + } + }, + "102South Win (G.NNE13.E21.W1)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102South Win (G.NNE13.E21.W1) missing:has_manual_interior_shades", + "BASELINE_0_MISSING_DATA": "id:102South Win (G.NNE13.E21.W1) missing:has_manual_interior_shades" + } + } + }, + "5-24": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_skylight_area_b", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_b", + "value": "53667.697699999975", + "unit": "ft2" + }, + { + "variable": "total_skylight_area_p", + "value": "0.0", + "unit": "ft2" + }, + { + "variable": "total_roof_area_p", + "value": "63685.645899999996", + "unit": "ft2" + }, + { + "variable": "skylight_roof_ratio_b", + "value": "0.0 dimensionless" + }, + { + "variable": "skylight_roof_ratio_p", + "value": "0.0 dimensionless" + } + ], + "messages": "" + } + }, + "5-25": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "5-26": { + "SCHOOL_UNIVERSITY": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-27": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-28": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-29": { + "101Roof (G.SSW35.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.SE37.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.C38.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.WSW39.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.W40.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.C41.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.C42.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.E43.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.W45.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.ESE46.E89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.E47.E91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.ENE48.E95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.W50.E101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.NW54.E112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.C65.E138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.E66.E140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.SSE68.E144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "GYMRoof (G.1.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.SSW14.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.SSE15.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.SW18.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.ESE20.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.ENE22.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.W24.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.NNW25.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.C49.E97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.C16.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.WSW17.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.S18.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.S19.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.S20.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.E22.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.NE23.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.N27.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.N28.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.N29.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.WNW31.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.SSE32.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.SE21.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.W36.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Ceiling (G.NE10.I51)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.NE10.I51) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N21.I90)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.N21.I90) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N25.I103)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.N25.I103) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.C26.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.C26.I107) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.NNE27.I110)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.NNE27.I110) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N28.I113)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.N28.I113) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.W29.I115)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.W29.I115) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.NE30.I123)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:101Ceiling (G.NE30.I123) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Roof (G.NE44.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.W63.E133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.NE64.E137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Ceiling (G.S4.I18)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102Ceiling (G.S4.I18) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.S6.I25)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102Ceiling (G.S6.I25) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.SSE10.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:102Ceiling (G.SSE10.I34) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Roof (G.S17.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.S19.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.E21.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.SSE23.E46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndCeiling (G.N8.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:2ndCeiling (G.N8.I27) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N9.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:2ndCeiling (G.N9.I34) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.C10.I38)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:2ndCeiling (G.C10.I38) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N14.I54)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:2ndCeiling (G.N14.I54) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndRoof (G.N24.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.N25.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.C26.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "2ndRoof (G.N30.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "101Roof (G.SE67.E142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + }, + "102Roof (G.NNE26.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior", + "value": "0.9" + } + ], + "messages": "" + } + }, + "5-30": { + "101Ceiling (G.SSW1.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.SSW1.I4) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.SSW1.I4) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.SE3.I20)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.SE3.I20) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.SE3.I20) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.C4.I21)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.C4.I21) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.C4.I21) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.WSW5.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.WSW5.I27) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.WSW5.I27) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.W6.I33)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.W6.I33) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.W6.I33) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.C7.I38)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.C7.I38) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.C7.I38) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.E9.I48)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.E9.I48) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.E9.I48) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.W11.I59)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.W11.I59) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.W11.I59) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.ESE12.I63)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.ESE12.I63) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.ESE12.I63) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.E13.I65)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.E13.I65) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.E13.I65) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.ENE14.I68)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.ENE14.I68) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.ENE14.I68) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.W16.I74)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.W16.I74) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.W16.I74) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.S17.I75)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.S17.I75) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.S17.I75) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.S18.I78)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.S18.I78) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.S18.I78) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.S19.I81)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.S19.I81) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.S19.I81) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.NW20.I88)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.NW20.I88) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.NW20.I88) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N22.I93)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.N22.I93) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.N22.I93) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N23.I96)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.N23.I96) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.N23.I96) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N24.I99)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.N24.I99) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.N24.I99) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.C31.I127)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.C31.I127) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.C31.I127) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.E32.I130)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.E32.I130) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.E32.I130) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.NNE13.I85)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.NNE13.I85) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.NNE13.I85) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.SE33.I132)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.SE33.I132) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.SE33.I132) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.SSE34.I166)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.SSE34.I166) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.SSE34.I166) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "GYMRoof (G.1.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_thermal_exterior_p", + "value": "0.9" + }, + { + "variable": "absorptance_thermal_exterior_u", + "value": "0.9" + } + ], + "messages": "" + }, + "102Ceiling (G.SSW1.I8)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.SSW1.I8) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.SSW1.I8) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.SSE2.I14)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.SSE2.I14) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.SSE2.I14) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.SW5.I23)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.SW5.I23) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.SW5.I23) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.ESE7.I29)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.ESE7.I29) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.ESE7.I29) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.ENE9.I33)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.ENE9.I33) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.ENE9.I33) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.W11.I35)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.W11.I35) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.W11.I35) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.NNW12.I77)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.NNW12.I77) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.NNW12.I77) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.WSW1.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.WSW1.I4) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.WSW1.I4) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.S2.I6)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.S2.I6) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.S2.I6) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.S3.I10)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.S3.I10) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.S3.I10) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.S4.I12)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.S4.I12) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.S4.I12) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.E6.I18)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.E6.I18) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.E6.I18) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.NE7.I22)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.NE7.I22) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.NE7.I22) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N11.I42)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.N11.I42) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.N11.I42) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N12.I46)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.N12.I46) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.N12.I46) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N13.I50)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.N13.I50) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.N13.I50) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.WNW15.I58)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.WNW15.I58) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.WNW15.I58) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.SSE16.I81)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.SSE16.I81) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.SSE16.I81) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.W2.I7)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.W2.I7) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.W2.I7) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.NE10.I51)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.NE10.I51) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.NE10.I51) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N21.I90)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.N21.I90) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.N21.I90) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N25.I103)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.N25.I103) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.N25.I103) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.C26.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.C26.I107) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.C26.I107) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.NNE27.I110)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.NNE27.I110) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.NNE27.I110) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.N28.I113)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.N28.I113) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.N28.I113) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.W29.I115)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.W29.I115) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.W29.I115) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.NE30.I123)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.NE30.I123) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.NE30.I123) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.S4.I18)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.S4.I18) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.S4.I18) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.S6.I25)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.S6.I25) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.S6.I25) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.E8.I32)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.E8.I32) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.E8.I32) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.SSE10.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.SSE10.I34) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.SSE10.I34) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N8.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.N8.I27) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.N8.I27) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N9.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.N9.I34) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.N9.I34) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.N14.I54)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.N14.I54) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.N14.I54) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.C15.I71)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.C15.I71) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.C15.I71) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "102Ceiling (G.C3.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:102Ceiling (G.C3.I15) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:102Ceiling (G.C3.I15) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "2ndCeiling (G.SE5.I14)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:2ndCeiling (G.SE5.I14) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:2ndCeiling (G.SE5.I14) OpticalProps missing:absorptance_thermal_exterior" + } + }, + "101Ceiling (G.C8.I39)": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:101Ceiling (G.C8.I39) OpticalProps missing:absorptance_thermal_exterior", + "USER_MISSING_DATA": "id:101Ceiling (G.C8.I39) OpticalProps missing:absorptance_thermal_exterior" + } + } + }, + "5-31": { + "101Roof (G.SSW35.E59)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.SE37.E63)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.C38.E65)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.WSW39.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.W40.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.C41.E77)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.C42.E78)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.E43.E79)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.W45.E85)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.ESE46.E89)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.E47.E91)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.ENE48.E95)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.W50.E101)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.NW54.E112)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.C65.E138)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.E66.E140)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.SSE68.E144)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "GYMRoof (G.1.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.SSW14.E24)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.SSE15.E27)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.SW18.E33)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.ESE20.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.ENE22.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.W24.E48)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.NNW25.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.C49.E97)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.C16.E28)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.WSW17.E34)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.S18.E36)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.S19.E38)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.S20.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.E22.E45)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.NE23.E49)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.N27.E58)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.N28.E60)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.N29.E64)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.WNW31.E70)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.SSE32.E76)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.SE21.E43)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.W36.E61)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Ceiling (G.NE10.I51)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Ceiling (G.N21.I90)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Ceiling (G.N25.I103)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Ceiling (G.C26.I107)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Ceiling (G.NNE27.I110)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Ceiling (G.N28.I113)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Ceiling (G.W29.I115)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Ceiling (G.NE30.I123)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "101Roof (G.NE44.E81)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.W63.E133)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.NE64.E137)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Ceiling (G.S4.I18)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "102Ceiling (G.S6.I25)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "102Ceiling (G.SSE10.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "102Roof (G.S17.E30)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.S19.E35)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.E21.E40)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.SSE23.E46)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndCeiling (G.N8.I27)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "2ndCeiling (G.N9.I34)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "2ndCeiling (G.C10.I38)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "2ndCeiling (G.N14.I54)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.8" + } + ], + "messages": "" + }, + "2ndRoof (G.N24.E51)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.N25.E54)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.C26.E55)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "2ndRoof (G.N30.E66)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "101Roof (G.SE67.E142)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + }, + "102Roof (G.NNE26.E57)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior", + "value": "0.7" + } + ], + "messages": "" + } + }, + "5-32": { + "101Ceiling (G.SSW1.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.SE3.I20)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.C4.I21)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.WSW5.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.W6.I33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.C7.I38)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.E9.I48)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.W11.I59)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.ESE12.I63)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.E13.I65)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.ENE14.I68)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.W16.I74)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.S17.I75)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.S18.I78)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.S19.I81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.NW20.I88)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.N22.I93)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.N23.I96)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.N24.I99)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.C31.I127)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.E32.I130)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.NNE13.I85)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.SE33.I132)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.SSE34.I166)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "GYMRoof (G.1.E13)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.7" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.7" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "" + }, + "102Ceiling (G.SSW1.I8)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.SSE2.I14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.SW5.I23)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.ESE7.I29)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.ENE9.I33)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.W11.I35)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.NNW12.I77)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.WSW1.I4)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.S2.I6)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.S3.I10)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.S4.I12)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.E6.I18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.NE7.I22)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.N11.I42)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.N12.I46)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.N13.I50)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.WNW15.I58)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.SSE16.I81)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.W2.I7)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.NE10.I51)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.N21.I90)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.N25.I103)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.C26.I107)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.NNE27.I110)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.N28.I113)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "SEMI-EXTERIOR" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.W29.I115)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.NE30.I123)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.S4.I18)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.S6.I25)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.E8.I32)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.SSE10.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.N8.I27)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.N9.I34)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.N14.I54)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.C15.I71)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "102Ceiling (G.C3.I15)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "2ndCeiling (G.SE5.I14)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + }, + "101Ceiling (G.C8.I39)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "absorptance_solar_exterior_p", + "value": "0.8" + }, + { + "variable": "absorptance_solar_exterior_u", + "value": "0.8" + }, + { + "variable": "surface_conditioning_category_p", + "value": "EXTERIOR NON-RESIDENTIAL" + } + ], + "messages": "Roof surface solar reflectance in the proposed model 0.8 matches that in the user model but is not equal to the prescribed default value of 0.3. Verify that reflectance was established using aged test data as required in section 5.5.3.1(a)." + } + }, + "5-33": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "failing_infiltration_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-34": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "failing_infiltration_zone_ids", + "value": "[]" + } + ], + "messages": "" + } + }, + "5-35": { + "Default Building": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "12386.231457920001", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "15811.356373120016", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "141172.82476000013", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "1.0000000000000002 cfm/ft2" + }, + { + "variable": "target_air_leakage_rate_75pa_b", + "value": "141172.82476000013", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "5-36": { + "ELEV ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "8.50157", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "5.0986191666666665", + "unit": "cfm" + } + ], + "messages": "" + }, + "ELEV 02 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "baseline_infiltration", + "value": "8.50157", + "unit": "cfm" + }, + { + "variable": "proposed_infiltration", + "value": "5.0986191666666665", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "5-37": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "building_total_air_leakage_rate", + "value": "5519.317468850002", + "unit": "cfm" + }, + { + "variable": "target_building_total_air_leakage_rate", + "value": "9338.612855040006", + "unit": "cfm" + }, + { + "variable": "building_total_envelope_area", + "value": "138967.4532000001", + "unit": "ft2" + }, + { + "variable": "target_air_leakage_coefficient", + "value": "0.6 cfm / foot ** 2" + }, + { + "variable": "building_total_measured_air_leakage_rate", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "target_air_leakage_rate_75pa_p", + "value": "83380.47192000005", + "unit": "cfm" + }, + { + "variable": "empty_measured_air_leakage_rate_flow_flag", + "value": "True" + } + ], + "messages": "The building total air leakage rate is not equal to the required proposed design air leakage rate at 75Pa with a Conversion Factor of 0.112 as per section G3.1.1.4. and Measured air leakage rate is not entered for all conditioned and semi-heated zones. Verify the proposed air leakage rate is modeled correctly." + } + }, + "5-38": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "ground_temperature_schedule", + "value": "None" + } + ], + "messages": "A ground temperature schedule was not found for the project." + } + }, + "5-39": { + "101South Wall (G.SSW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101WNW Wall (G.WSW5.E7)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101South Wall (G.WSW5.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101WNW Wall (G.WSW39.E66)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101WNW Wall (G.W6.E11)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101WSW Wall (G.W6.E13)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101WNW Wall (G.W40.E71)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101WSW Wall (G.W40.E73)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.W11.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.W11.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.W45.E82)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.W45.E83)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101East Wall (G.ESE12.E20)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101East Wall (G.E13.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Wall (G.ENE14.E24)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101East Wall (G.ENE14.E26)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.W16.E28)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101South Wall (G.S17.E31)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101South Wall (G.S18.E32)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101South Wall (G.S19.E33)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.NW20.E34)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Wall (G.NW20.E37)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Wall (G.N22.E39)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Wall (G.N23.E42)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Wall (G.N57.E119)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Wall (G.N24.E44)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MASS WALLS 11": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101East Door (G.SSE34.E55.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "GYMNorth Wall (G.1.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102South Wall (G.SSW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102South Wall (G.SSE2.E3)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102South Wall (G.SW5.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102South Wall (G.ESE7.E9)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MASS WALLS 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102West Door (G.W11.E15.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "102East Door (G.NNW12.E16.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "102North Door (G.NNW12.E17.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "2ndWest Wall (G.WSW1.E1)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndSouth Wall (G.S2.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndSouth Wall (G.S3.E5)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndSouth Wall (G.S4.E6)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndEast Door (G.E6.E9.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "2ndEast Wall (G.NE7.E12)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndNorth Wall (G.N11.E17)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndNorth Wall (G.N12.E18)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndNorth Wall (G.N13.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndWest Wall (G.WNW15.E23)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndNorth Wall (G.WNW15.E25)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "2ndSouth Wall (G.SSE16.E29)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.W2.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101West Wall (G.W36.E60)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Door (G.NE10.E16.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "SEMI HEAT WALL 23": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Door (G.N25.E45.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "SEMI HEAT WALL 22": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "101North Door (G.NE30.E50.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "101North Door (G.NE30.E50.D2)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "SEMI HEAT WALL 06": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "SEMI HEAT WALL 24": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "SEMI HEAT WALL 09": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102South Wall (G.S4.E4)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102South Door (G.S6.E7.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "102East Door (G.E8.E10.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "SEMI HEAT WALL 21": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "SEMI HEAT WALL 25": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MASS WALLS 09": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "102West Door (G.NNE13.E18.D1)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "scc_dict_b", + "value": "EXTERIOR NON-RESIDENTIAL" + }, + { + "variable": "subsurface_class_b", + "value": "SWINGING_DOOR" + }, + { + "variable": "target_u_factor_res_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_nonres_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "u_factor_b", + "value": "0.35087719298245623", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "target_u_factor_b", + "value": "0.7", + "unit": "Btu/(hr*ft2*R)" + }, + { + "variable": "manual_check_required_flag", + "value": "False" + } + ], + "messages": "Rule evaluation fails with a conservative outcome." + }, + "102North Wall (G.NNE13.E19)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + }, + "MASS WALLS 17": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "5-40": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "6-1": { + "SCHOOL_UNIVERSITY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "allowable_LPD_BAM", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "building_segment_design_lighting_wattage", + "value": "20865.554215499997", + "unit": "W" + }, + { + "variable": "check_BAM_flag", + "value": "True" + }, + { + "variable": "total_building_segment_area_p", + "value": "121576.71050000006", + "unit": "ft2" + }, + { + "variable": "allowable_lighting_wattage_SBS", + "value": "70054.72680000002", + "unit": "W" + } + ], + "messages": "Project passes based on building area method. Verify if project uses building area method." + } + }, + "6-2": { + "148 KINDERGARTEN PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "100 WAITING PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101 MAIN OFF 01 PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101C CONF RM PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "101A OFFICE PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "103 MEDIA PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104B ELL/READING PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104C ELL/READING PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "104D ELL/READING PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "111 SCIENCE CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "113 & 115 1ST CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "117 RESOURCE PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "119 & 121 2ND CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "110 ART CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "112 & 114 1ST CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "116 RESOURCE PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "118 & 120 2ND CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124B KITCH OFF PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124C CUST OFF PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "127 cafeteria PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "126 KITCHEN PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-3 TO 7 CORR PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "143 & 144 Kindergarten PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "141 Kindergardten PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "139 Pre-K PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "137 Pre-K PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "135 Music PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "128A Faculty PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "201 ELL/READING PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "205 & 207 3RD CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "209 RESOURCE PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "211 & 213 4TH CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "216 COPY PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "218 OFF PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "210 & 212 4TH CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "208 RESOURCE PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "204 & 206 3RD CLASS PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "200 RESOURCE PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "2C-1 & 3 CORR PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1V-1 & 2 VEST PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV SP": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "150 EXT STOR PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S1-1 STAIR 1 PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "112A WATER PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "122 ELEC PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2-1 STAIR 2 PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "111A STOR PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "124 RECEIVING PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1-V4 Vest PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "137b Exit PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "136 Stor PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "129 Stor PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV 02 SP": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2-2 STAIR 2 PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "214 MECH PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "ELEV 02 PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S1-2 STAIR PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "103D WORK RM PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "142 Data PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "219 DATA PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "1C-1 CORR PLNM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "6-3": { + "148 KINDERGARTEN SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "148 KINDERGARTEN PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "100 WAITING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "100 WAITING PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "101C CONF RM SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.53", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.53", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "101C CONF RM PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "101A OFFICE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "101A OFFICE PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "103 MEDIA SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.53", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.53", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "103 MEDIA PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "104B ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "104B ELL/READING PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "104C ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "104C ELL/READING PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "104D ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "104D ELL/READING PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "117 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.45000000000000007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.45000000000000007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "117 RESOURCE PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "110 ART CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "110 ART CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "116 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "116 RESOURCE PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "124B KITCH OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "124B KITCH OFF PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "124C CUST OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "124C CUST OFF PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "127 cafeteria SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "127 cafeteria PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "126 KITCHEN SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.29", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.29", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "126 KITCHEN PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "140 GYM SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.4", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "141 Kindergardten SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "141 Kindergardten PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "139 Pre-K SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "139 Pre-K PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "137 Pre-K SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "137 Pre-K PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "135 Music SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "135 Music PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "128A Faculty SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.18", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.18", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "128A Faculty PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "201 ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "201 ELL/READING PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "209 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "209 RESOURCE PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "216 COPY SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "216 COPY PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "218 OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.35", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "218 OFF PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "208 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.45000000000000007", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.45000000000000007", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "208 RESOURCE PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "200 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.28", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "200 RESOURCE PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1V-1 & 2 VEST SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1V-1 & 2 VEST PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "150 EXT STOR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "112A WATER SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "ELEV SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "122 ELEC SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "111A STOR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "124 RECEIVING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.37000000000000005", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.37000000000000005", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "150 EXT STOR PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "112A WATER PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "ELEV PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "122 ELEC PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "111A STOR PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "124 RECEIVING PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1-V4 Vest SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "137b Exit SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.31", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "136 Stor SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "129 Stor SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.2646", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1-V4 Vest PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "137b Exit PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "136 Stor PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "129 Stor PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "214 MECH SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "ELEV 02 SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S1-2 STAIR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.11", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "214 MECH PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "ELEV 02 PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "S1-2 STAIR PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "103D WORK RM SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "103D WORK RM PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "142 Data SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "142 Data PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "219 DATA SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.44", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "219 DATA PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1C-1 CORR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.25", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + }, + "1C-1 CORR PLNM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_u", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "total_space_lpd_p", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + } + ], + "messages": "" + } + }, + "6-4": { + "148 KINDERGARTEN SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "148 KINDERGARTEN PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1V-3 MAIN LOBBY SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "100 WAITING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "100 WAITING PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "101 MAIN OFF 01 SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "101C CONF RM SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "101C CONF RM PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "101A OFFICE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "101A OFFICE PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1C-1 CORR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1C-1 CORR PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "102, 102A, 103A, 140A OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "103 MEDIA SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "103 MEDIA PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "104B ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "104B ELL/READING PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "104C ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "104C ELL/READING PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "104D ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "104D ELL/READING PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "111 SCIENCE CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "113 & 115 1ST CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "117 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "117 RESOURCE PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "119 & 121 2ND CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "110 ART CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "110 ART CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "112 & 114 1ST CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "116 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "116 RESOURCE PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "118 & 120 2ND CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "124B KITCH OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "124B KITCH OFF PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "124C CUST OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "124C CUST OFF PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1C-3 TO 7 CORR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "140 GYM SP": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "141 Kindergardten SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "141 Kindergardten PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "139 Pre-K SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "139 Pre-K PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "137 Pre-K SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "137 Pre-K PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "135 Music SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "135 Music PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "128A Faculty SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "128A Faculty PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1C-8, 9 & 10 Corr SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "103D WORK RM SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "103D WORK RM PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "142 Data SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "142 Data PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "201 ELL/READING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "201 ELL/READING PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "205 & 207 3RD CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "209 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "209 RESOURCE PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "211 & 213 4TH CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "216 COPY SP": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "216 COPY PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "218 OFF SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.1", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "218 OFF PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "210 & 212 4TH CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "208 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "208 RESOURCE PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "204 & 206 3RD CLASS SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "200 RESOURCE SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.4000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "200 RESOURCE PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "2C-1 & 3 CORR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.5", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.5000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "219 DATA SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "219 DATA PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1V-1 & 2 VEST SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1V-1 & 2 VEST PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "150 EXT STOR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 SP": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "112A WATER SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "ELEV SP": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "3.1400000000000006", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "122 ELEC SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 SP": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.4", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "111A STOR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "124 RECEIVING SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.59", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "150 EXT STOR PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "S1-1 STAIR 1 PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "112A WATER PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "ELEV PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "122 ELEC PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "S2-1 STAIR 2 PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "111A STOR PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "124 RECEIVING PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "1-V4 Vest SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "137b Exit SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.3", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.3000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "136 Stor SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "129 Stor SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.8", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.8000000000000003", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "1-V4 Vest PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "137b Exit PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "136 Stor PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "129 Stor PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "S2-2 STAIR 2 SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "214 MECH SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.5000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.5000000000000004", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "ELEV 02 SP": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "S1-2 STAIR SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.6000000000000001", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "214 MECH PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "ELEV 02 PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "S1-2 STAIR PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "126 KITCHEN SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.2000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "126 KITCHEN PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + }, + "127 cafeteria SP": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.9000000000000001", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "0.9000000000000002", + "unit": "W/ft2" + } + ], + "messages": "" + }, + "127 cafeteria PLNM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "total_space_lpd_b", + "value": "0.0", + "unit": "W/ft2" + }, + { + "variable": "space_lighting_status_type_p", + "value": "AS-DESIGNED OR AS-EXISTING" + }, + { + "variable": "lpd_allowance_b", + "value": "1.1000000000000003", + "unit": "W/ft2" + } + ], + "messages": "P_RMD lighting status type is as-designed or as-existing. But lighting space type in B_RMD is not specified." + } + }, + "6-5": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "PROPOSED_MISSING_DATA": "id:Default Building missing:building_open_schedule", + "BASELINE_0_MISSING_DATA": "id:Default Building missing:building_open_schedule" + } + } + }, + "6-6": { + "Default Building": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "ids_for_interior_lighting_instances_with_daylighting_control", + "value": "[]" + } + ], + "messages": "" + } + }, + "6-7": { + "148 KINDERGARTEN ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "148 KINDERGARTEN PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "100 WAITING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "100 WAITING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "101 MAIN OFF 01 PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "101C CONF RM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "101C CONF RM PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "101A OFFICE ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "101A OFFICE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM Z": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "103 MEDIA ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "103 MEDIA PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "104B ELL/READING ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "104B ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "104C ELL/READING ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "104C ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "104D ELL/READING ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "104D ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "111 SCIENCE CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "113 & 115 1ST CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "117 RESOURCE ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "117 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "119 & 121 2ND CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "110 ART CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "110 ART CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "112 & 114 1ST CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "116 RESOURCE ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "116 RESOURCE PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "118 & 120 2ND CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "118 & 120 2ND CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "124B KITCH OFF ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "124B KITCH OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "124C CUST OFF ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "124C CUST OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "127 cafeteria ZN": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "127 cafeteria PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "126 KITCHEN ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "126 KITCHEN PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "140 GYM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "143 & 144 Kindergarten ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "143 & 144 Kindergarten PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "141 Kindergardten ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "141 Kindergardten PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "139 Pre-K ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "139 Pre-K PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "137 Pre-K ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "137 Pre-K PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "135 Music ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "135 Music PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "128A Faculty ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "128A Faculty PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "201 ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "True" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with window(s) and/or skylight(s) and have daylighting controls modeled explicitly in the simulation tool. Verify that the mandatory lighting control requirements are met." + }, + "201 ELL/READING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "205 & 207 3RD CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "209 RESOURCE ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "209 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "211 & 213 4TH CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "216 COPY ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "216 COPY PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "218 OFF ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "218 OFF PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "210 & 212 4TH CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "208 RESOURCE ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "208 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "204 & 206 3RD CLASS PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "200 RESOURCE ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "200 RESOURCE PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "2C-1 & 3 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1V-1 & 2 VEST ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "1V-1 & 2 VEST PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "ELEV ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "124 RECEIVING ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "150 EXT STOR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "112A WATER PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "ELEV PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "122 ELEC PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 PLNM ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "111A STOR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "124 RECEIVING PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1-V4 Vest ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1-V4 Vest PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "137b Exit PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "136 Stor PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "129 Stor PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "ELEV 02 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "S1-2 STAIR ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "True" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "Some of the spaces in zone are modeled with fenestration but no daylighting controls. The design must include mandatory daylighting controls unless any of the exceptions to 90.1 section 9.4.1.1 apply." + }, + "S2-2 STAIR 2 PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "214 MECH PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "ELEV 02 PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "S1-2 STAIR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "103D WORK RM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "103D WORK RM PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "142 Data ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "142 Data PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "219 DATA ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "219 DATA PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1C-1 CORR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + }, + "1C-1 CORR PLNM ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "daylight_flag_p", + "value": "False" + }, + { + "variable": "has_daylight_control_flag", + "value": "False" + }, + { + "variable": "daylight_schedule_adjustment_flag", + "value": "False" + } + ], + "messages": "" + } + }, + "6-8": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "6-9": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "RMD:Default Building is missing building_open_schedule" + } + }, + "10-1": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be only one HVAC system serving each zone in the baseline RMD." + } + }, + "10-7": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "10-14": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "10-15": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "There must be one system serving each zone in the baseline RMD." + } + }, + "11-1": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "proposed_user_comparison", + "value": "[]" + }, + { + "variable": "proposed_baseline_comparison", + "value": "['path: $.service_water_heating_equipment[DHW Plant 1 Wtr Htr (1)].input_power: index context data: 153862.33333333334 watt does not equal to compare context data: 183169.44444444444 watt']" + } + ], + "messages": "path: $.service_water_heating_equipment[DHW Plant 1 Wtr Htr (1)].input_power: index context data: 153862.33333333334 watt does not equal to compare context data: 183169.44444444444 watt" + } + }, + "11-6": { + "DHW Plant 1 Loop (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "piping_losses_modeled_b", + "value": "[False]" + } + ], + "messages": "" + } + }, + "11-7": { + "SCHOOL_UNIVERSITY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "expected_swh_equip_type_list", + "value": "[]" + }, + { + "variable": "swh_equip_type_list_b", + "value": "[]" + } + ], + "messages": "" + } + }, + "11-8": { + "SCHOOL_UNIVERSITY": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "swh_bat_b", + "value": "SCHOOL_UNIVERSITY" + }, + { + "variable": "num_swh_systems_b", + "value": "0" + }, + { + "variable": "num_of_bldg_segment_b", + "value": "1" + }, + { + "variable": "is_referenced_in_other_bats_b", + "value": "True" + }, + { + "variable": "num_other_swh_bat_segment_b", + "value": "0" + } + ], + "messages": "" + } + }, + "11-9": { + "SCHOOL_UNIVERSITY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Check that the baseline Service Water Heating System for Building Area Type is sized according to ASHRAE Standard 90.1 2019, Section 7.4.1." + } + }, + "11-10": { + "DHW Plant 1 Wtr Htr (1)": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "swh_fuel_type_b", + "value": "NATURAL_GAS" + }, + { + "variable": "swh_tank_type_b", + "value": "COMMERCIAL_STORAGE" + }, + { + "variable": "swh_input_power_b", + "value": "183169.44444444444 watt" + }, + { + "variable": "swh_tank_storage_volume_b", + "value": "200.00000000000006 gallon" + }, + { + "variable": "swh_setpoint_temperature_b", + "value": "43.33333333333337 degree_Celsius" + }, + { + "variable": "modeled_efficiency_b", + "value": "0.8" + }, + { + "variable": "modeled_standby_loss_b", + "value": "None" + }, + { + "variable": "swh_input_power_per_volume_b", + "value": "3124.9999999999995 Btu/h/gallon" + }, + { + "variable": "expected_efficiency_b", + "value": "0.8" + }, + { + "variable": "expected_efficiency_metric_b", + "value": "THERMAL_EFFICIENCY" + }, + { + "variable": "standby_loss_target_b", + "value": "2336.884918610405" + }, + { + "variable": "standby_loss_target_metric_b", + "value": "STANDBY_LOSS_ENERGY" + }, + { + "variable": "standby_loss_is_estimated_b", + "value": "False" + } + ], + "messages": "Based on the provided details, STANDBY_LOSS_ENERGY is an expected efficiency metric for this water heater, however it was not provided. Note that the specific requirements of 10 CFR 430 can be found in ASHRAE 90.1 Appendix F Table F-2." + } + }, + "11-11": { + "SCHOOL_UNIVERSITY": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "swh_use_loads_b", + "value": "0.0" + } + ], + "messages": "" + } + }, + "11-12": { + "Default Building": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "buildings:Default Building is missing building_open_schedule" + } + }, + "11-13": { + "Default Building": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "is_applicable", + "value": "False" + }, + { + "variable": "service_water_heating_btu_per_sf_per_year", + "value": "0.0", + "unit": "Btu/ft2" + } + ], + "messages": "" + } + }, + "11-14": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "11-15": { + "DHW Plant 1 Loop (1) Load1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_swh_use_none_b", + "value": "False" + }, + { + "variable": "is_swh_use_none_p", + "value": "False" + }, + { + "variable": "swh_use_b", + "value": "None" + }, + { + "variable": "swh_use_p", + "value": "None" + }, + { + "variable": "swh_use_id_b", + "value": "DHW Plant 1 Loop (1) Load1" + }, + { + "variable": "swh_use_id_p", + "value": "DHW Plant 1 Loop (1) Load1" + }, + { + "variable": "swh_use_use_units_b", + "value": "None" + }, + { + "variable": "swh_use_use_units_p", + "value": "None" + }, + { + "variable": "swh_use_multiplier_schedule_b", + "value": "C9 School SHW Sch" + }, + { + "variable": "swh_use_multiplier_schedule_p", + "value": "C9 School SHW Sch" + }, + { + "variable": "swh_use_temperature_at_fixture_b", + "value": "135.00000000000006", + "unit": "F" + }, + { + "variable": "swh_use_temperature_at_fixture_p", + "value": "135.00000000000006", + "unit": "F" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_b", + "value": "None" + }, + { + "variable": "swh_use_water_mains_temperature_schedule_p", + "value": "None" + }, + { + "variable": "swh_use_served_by_distribution_system_b", + "value": "{'id': 'DHW Plant 1 Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_served_by_distribution_system_p", + "value": "{'id': 'DHW Plant 1 Loop (1)', 'tanks': [], 'service_water_piping': {'id': 'DHW Plant 1 Loop (1) ServiceWaterPiping', 'child': [], 'service_water_heating_design_and_control': {'id': 'DHW Plant 1 Loop (1) HeatingDesign/Control', 'design_supply_temperature': , 'design_return_temperature': , 'flow_control': 'FIXED_FLOW', 'temperature_reset_type': 'NO_RESET'}, 'is_recirculation_loop': False, 'are_thermal_losses_modeled': False}, 'design_supply_temperature': , 'design_supply_temperature_difference': , 'is_ground_temperature_used_for_entering_water': True}" + }, + { + "variable": "swh_use_design_supply_water_temperature_b", + "value": "None" + }, + { + "variable": "swh_use_design_supply_water_temperature_p", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_b", + "value": "None" + }, + { + "variable": "is_heat_recovered_by_drain_p", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_b", + "value": "None" + }, + { + "variable": "is_recovered_heat_used_by_cold_side_feed_p", + "value": "None" + } + ], + "messages": "" + } + }, + "11-16": { + "DHW Plant 1 Wtr Htr (1)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heater_fuel_type_b", + "value": "NATURAL_GAS" + }, + { + "variable": "proposed_fuels", + "value": "['NATURAL_GAS', 'ELECTRICITY']" + } + ], + "messages": "" + } + }, + "11-17": { + "SCHOOL_UNIVERSITY": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "service_water_heating_uses:DHW Plant 1 Loop (1) Load1 is missing use" + } + }, + "12-1": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "reduced_misc_equipment_power", + "value": "[]" + }, + { + "variable": "unexpected_misc_equipment_power", + "value": "[]" + }, + { + "variable": "compliance_path", + "value": "None" + } + ], + "messages": "The proposed building miscellaneous equipment load is less than the baseline, which is only permitted when the model is being used to quantify performance that exceeds the requirements of Standard 90.1." + } + }, + "12-2": { + "148 KINDERGARTEN SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "148 KINDERGARTEN PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1V-3 MAIN LOBBY PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "100 WAITING SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "100 WAITING PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "101 MAIN OFF 01 PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "101C CONF RM SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "101C CONF RM PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "101A OFFICE SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "101A OFFICE PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1C-1 CORR SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1C-1 CORR PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "102, 102A, 103A, 140A OFF PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "103 MEDIA SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CONFERENCE_MEETING_MULTIPURPOSE_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "103 MEDIA PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "104B ELL/READING SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "104B ELL/READING PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "104C ELL/READING SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "104C ELL/READING PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "104D ELL/READING SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "104D ELL/READING PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "111 SCIENCE CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "113 & 115 1ST CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "117 RESOURCE SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "117 RESOURCE PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "119 & 121 2ND CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "110 ART CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "110 ART CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "112 & 114 1ST CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "116 RESOURCE SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "116 RESOURCE PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "118 & 120 2ND CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "124B KITCH OFF SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "124B KITCH OFF PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "124C CUST OFF SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "124C CUST OFF PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1C-3 TO 7 CORR PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "140 GYM SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "GYMNASIUM_FITNESS_CENTER_EXERCISE_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "143 & 144 Kindergarten PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "141 Kindergardten SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "141 Kindergardten PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "139 Pre-K SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "139 Pre-K PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "137 Pre-K SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "137 Pre-K PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "135 Music SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "135 Music PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "128A Faculty SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DINING_AREA_CAFETERIA_OR_FAST_FOOD_DINING" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "128A Faculty PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1C-8, 9 & 10 Corr PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "103D WORK RM SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_SMALL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "103D WORK RM PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "142 Data SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "142 Data PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "201 ELL/READING SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "201 ELL/READING PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "205 & 207 3RD CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "209 RESOURCE SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "209 RESOURCE PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "211 & 213 4TH CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "216 COPY SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "216 COPY PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "218 OFF SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "OFFICE_ENCLOSED" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "218 OFF PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "210 & 212 4TH CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "208 RESOURCE SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "208 RESOURCE PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "204 & 206 3RD CLASS PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "200 RESOURCE SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CLASSROOM_LECTURE_HALL_TRAINING_ROOM_SCHOOL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "200 RESOURCE PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "CORRIDOR_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "2C-1 & 3 CORR PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "219 DATA SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "219 DATA PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1V-1 & 2 VEST SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1V-1 & 2 VEST PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "150 EXT STOR SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_SMALL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "112A WATER SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "ELEV SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "122 ELEC SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "111A STOR SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_SMALL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "124 RECEIVING SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOADING_DOCK_INTERIOR" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "150 EXT STOR PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S1-1 STAIR 1 PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "112A WATER PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "ELEV PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "122 ELEC PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S2-1 STAIR 2 PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "111A STOR PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "124 RECEIVING PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1-V4 Vest SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "137b Exit SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "LOBBY_ALL_OTHERS" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "136 Stor SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_SMALL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "129 Stor SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STORAGE_ROOM_SMALL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "1-V4 Vest PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "137b Exit PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "136 Stor PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "129 Stor PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "214 MECH SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "ELECTRICAL_MECHANICAL_ROOM" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "ELEV 02 SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S1-2 STAIR SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "STAIRWELL" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S2-2 STAIR 2 PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "214 MECH PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "ELEV 02 PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "S1-2 STAIR PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "126 KITCHEN SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "FOOD_PREPARATION_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "126 KITCHEN SP MiscEqp2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "FOOD_PREPARATION_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "126 KITCHEN SP MiscEqp3": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "FOOD_PREPARATION_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "126 KITCHEN SP MiscEqp4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "FOOD_PREPARATION_AREA" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "126 KITCHEN PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "127 cafeteria SP MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "DINING_AREA_CAFETERIA_OR_FAST_FOOD_DINING" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + }, + "127 cafeteria PLNM MiscEqp1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "space_type_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_b", + "value": "None" + }, + { + "variable": "auto_receptacle_control_p", + "value": "None" + }, + { + "variable": "total_hours_matched", + "value": "8760" + }, + { + "variable": "eflh_difference", + "value": "0.0" + }, + { + "variable": "hours_misc_equip_schedule_b", + "value": "8760" + }, + { + "variable": "hours_misc_equip_schedule_p", + "value": "8760" + } + ], + "messages": "" + } + }, + "12-3": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "spaces:148 KINDERGARTEN PLNM is missing lighting_space_type" + } + }, + "12-4": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-1": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-2": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-3": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-4": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-5": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-6": { + "Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "16-7": { + "Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "18-1": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "lighting_multiplier_schedule:LTG ADJUST is missing hourly_cooling_design_day" + } + }, + "18-2": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "18-3": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "lighting_multiplier_schedule:LTG ADJUST is missing hourly_cooling_design_day" + } + }, + "19-1": { + "BL SYS 5 FLOOR 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "False" + }, + { + "variable": "cooling_oversizing_factor", + "value": "0.1499999999999999" + }, + { + "variable": "cooling_is_calculated_size", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "heating_not_applicable", + "value": "False" + }, + { + "variable": "heating_oversizing_factor", + "value": "0.25" + }, + { + "variable": "heating_is_calculated_size", + "value": "True" + }, + { + "variable": "cooling_not_applicable", + "value": "True" + } + ], + "messages": "" + } + }, + "19-2": { + "Hot Water Loop": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "is_sized_using_coincident_load", + "value": "True" + } + ], + "messages": "" + } + }, + "19-3": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": [ + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-4": { + "148 KINDERGARTEN ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "148 KINDERGARTEN PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1V-3 MAIN LOBBY ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1V-3 MAIN LOBBY PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "100 WAITING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "100 WAITING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "101 MAIN OFF 01 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "101 MAIN OFF 01 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "101C CONF RM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "101C CONF RM PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "101A OFFICE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "101A OFFICE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1C-1 CORR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1C-1 CORR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "102, 102A, 103A, 140A OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "102, 102A, 103A, 140A OFF PLNM Z": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "103 MEDIA ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "103 MEDIA PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "104B ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "104B ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "104C ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "104C ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "104D ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "104D ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "111 SCIENCE CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "111 SCIENCE CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "113 & 115 1ST CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "113 & 115 1ST CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "117 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "117 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "119 & 121 2ND CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "119 & 121 2ND CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "110 ART CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "110 ART CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "112 & 114 1ST CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "112 & 114 1ST CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "116 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "116 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "118 & 120 2ND CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "118 & 120 2ND CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "124B KITCH OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "124B KITCH OFF PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "124C CUST OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "124C CUST OFF PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1C-3 TO 7 CORR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1C-3 TO 7 CORR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "140 GYM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "143 & 144 Kindergarten ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "143 & 144 Kindergarten PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "141 Kindergardten ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "141 Kindergardten PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "139 Pre-K ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "139 Pre-K PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "137 Pre-K ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "137 Pre-K PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "135 Music ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "135 Music PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "128A Faculty ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "128A Faculty PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1C-8, 9 & 10 Corr ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1C-8, 9 & 10 Corr PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "103D WORK RM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "103D WORK RM PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "142 Data ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "142 Data PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "201 ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "201 ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "205 & 207 3RD CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "205 & 207 3RD CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "209 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "209 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "211 & 213 4TH CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "211 & 213 4TH CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "216 COPY ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "216 COPY PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "218 OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "218 OFF PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "210 & 212 4TH CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "210 & 212 4TH CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "208 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "208 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "204 & 206 3RD CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "204 & 206 3RD CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "200 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "200 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "2C-1 & 3 CORR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "2C-1 & 3 CORR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "219 DATA ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "219 DATA PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1V-1 & 2 VEST ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1V-1 & 2 VEST PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "150 EXT STOR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S1-1 STAIR 1 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "112A WATER ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "ELEV ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "122 ELEC ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S2-1 STAIR 2 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "111A STOR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "124 RECEIVING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "150 EXT STOR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S1-1 STAIR 1 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "112A WATER PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "ELEV PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "122 ELEC PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S2-1 STAIR 2 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "111A STOR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "124 RECEIVING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1-V4 Vest ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "137b Exit ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "136 Stor ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "129 Stor ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "1-V4 Vest PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "137b Exit PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "136 Stor PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "129 Stor PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S2-2 STAIR 2 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "214 MECH ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "ELEV 02 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S1-2 STAIR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S2-2 STAIR 2 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "214 MECH PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "ELEV 02 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "S1-2 STAIR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "126 KITCHEN ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "126 KITCHEN PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "127 cafeteria ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + }, + "127 cafeteria PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "schedule:C9 School INF Sch is missing hourly_cooling_design_day" + } + }, + "19-5": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "unmet_load_hours_heating_p", + "value": "153.0", + "unit": "hr" + }, + { + "variable": "unmet_load_hours_cooling_p", + "value": "19.0", + "unit": "hr" + }, + { + "variable": "coincident_unmet_load_hours_p", + "value": "None" + } + ], + "messages": "" + } + }, + "19-6": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": { + "BASELINE_0_MISSING_DATA": "id:[BL] Sample 5 Output missing:unmet_load_hours" + } + } + }, + "19-7": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "zones:148 KINDERGARTEN ZN is missing air_distribution_effectiveness" + } + }, + "19-8": { + "BL SYS 5 FLOOR 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "12493.952364978846", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "9.390798781639301", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "3967.898877883272", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "10.30588919098158", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "29.665386105945345", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.3881929878293264", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "320.24794179298624", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "True" + }, + { + "variable": "avg_occ_density", + "value": "9.999980600986495", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "3657.737887446332", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "49.99999872821206", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "13.786834178929553", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9997532027551547", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "35.165982550946865", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "25.000128057369697", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "16.873335018041303", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.999977075261915", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "0.0", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0002152543589007", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "22.706004285632503", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999015586546349", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "29.13282430349193", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "24.999999999999993", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "11.174634540406544", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999999999999999", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "62.46002047485581", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.000048779694639", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "22.209848856946792", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "30.00273186723125", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "10.838191224869888", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "30.00324675324675", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "27.587953354172782", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999999999999999", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "31.829722631736786", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0000281777452167", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "35.30812364252233", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999999999999997", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "41.61651626223011", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "0.9999290534477935", + "unit": "people/kft2" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_min_OA_flow", + "value": "39.42260110069424", + "unit": "cfm" + }, + { + "variable": "is_DCV_modeled_b", + "value": "False" + }, + { + "variable": "avg_occ_density", + "value": "1.0001280573697013", + "unit": "people/kft2" + } + ], + "messages": "" + } + }, + "19-9": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-10": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-11": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-12": { + "BL SYS 5 FLOOR 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "high_limit_temp_b", + "value": "69.99999999999999", + "unit": "F" + }, + { + "variable": "req_high_limit_temp", + "value": "70", + "unit": "F" + }, + { + "variable": "air_economizer_type_b", + "value": "TEMPERATURE" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-13": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-14": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-15": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-16": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-17": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-18": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-19": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-20": { + "BL SYS 5 FLOOR 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "36340.04974365235", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "17178.57170104981", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "41075.7289691061", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "12442.892475596065", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 5 FLOOR 1.The expected modeled baseline supply, return, exhaust, and relief kW is 140156.18534824878 british_thermal_unit / hour, 42456.90552174087 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL Sys 5 2nd flr": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "13139.4739151001", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "6211.387634277345", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "13353.237173479396", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "5997.624375898048", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL Sys 5 2nd flr.The expected modeled baseline supply, return, exhaust, and relief kW is 45563.13013197956 british_thermal_unit / hour, 20464.74097415964 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "S2 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "76.97957754135133", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "76.97957754135133", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "1411.5025997161868", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "666.8961048126222", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "1307.228126088213", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "771.1705784405959", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 KIT.The expected modeled baseline supply, return, exhaust, and relief kW is 4460.4468899447675 british_thermal_unit / hour, 2631.342869370105 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "BL SYS 3 Cafe": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "8262.044906616213", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "3903.589010238648", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "7651.688193007604", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "4513.945723847256", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "The calculated system fan power doesn't appear to be distributed to the supply, return, exhaust, and relief fans in the same proportion as the proposed design for BL SYS 3 Cafe.The expected modeled baseline supply, return, exhaust, and relief kW is 26108.640199977417 british_thermal_unit / hour, 15402.219982493936 british_thermal_unit / hour, 0.0 british_thermal_unit / hour, 0.0 british_thermal_unit / hour respectively." + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "49.19180646538735", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "49.19180646538735", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "91.25322848558429", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "91.25322848558429", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "49.146551638841636", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "49.146551638841636", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "66.13522768020631", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "66.13522768020631", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "75.59760659933092", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "75.59760659933092", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "39.87140581011773", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "39.87140581011773", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "139.28693532943728", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "139.28693532943728", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "64.69008326530458", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "64.69008326530458", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "38.67096826434136", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "38.67096826434136", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "71.58877700567247", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "71.58877700567247", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "82.5958698987961", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "82.5958698987961", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "91.62206947803499", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "91.62206947803499", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "98.99258613586429", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "98.99258613586429", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "hvac_sys_total_supply_fan_power_b", + "value": "93.77395361661912", + "unit": "W" + }, + { + "variable": "hvac_sys_total_return_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_exhaust_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "hvac_sys_total_relief_fan_power_b", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_supply", + "value": "93.77395361661912", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_return", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_exhaust", + "value": "0.0", + "unit": "W" + }, + { + "variable": "expected_baseline_fan_power_relief", + "value": "0.0", + "unit": "W" + } + ], + "messages": "" + } + }, + "19-21": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-22": { + "BL SYS 5 FLOOR 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-23": { + "148 KINDERGARTEN ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "148 KINDERGARTEN PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1V-3 MAIN LOBBY ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1V-3 MAIN LOBBY PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "100 WAITING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "100 WAITING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "101 MAIN OFF 01 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "101 MAIN OFF 01 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "101C CONF RM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "101C CONF RM PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "101A OFFICE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "101A OFFICE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1C-1 CORR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1C-1 CORR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "102, 102A, 103A, 140A OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "102, 102A, 103A, 140A OFF PLNM Z": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "103 MEDIA ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "103 MEDIA PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "104B ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "104B ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "104C ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "104C ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "104D ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "104D ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "111 SCIENCE CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "111 SCIENCE CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "113 & 115 1ST CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "113 & 115 1ST CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "117 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "117 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "119 & 121 2ND CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "119 & 121 2ND CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "110 ART CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "110 ART CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "112 & 114 1ST CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "112 & 114 1ST CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "116 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "116 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "118 & 120 2ND CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "118 & 120 2ND CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "124B KITCH OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "124B KITCH OFF PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "124C CUST OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "124C CUST OFF PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1C-3 TO 7 CORR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1C-3 TO 7 CORR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "140 GYM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "143 & 144 Kindergarten ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "143 & 144 Kindergarten PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "141 Kindergardten ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "141 Kindergardten PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "139 Pre-K ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "139 Pre-K PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "137 Pre-K ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "137 Pre-K PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "135 Music ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "135 Music PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "128A Faculty ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "128A Faculty PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1C-8, 9 & 10 Corr ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1C-8, 9 & 10 Corr PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "103D WORK RM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "103D WORK RM PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "142 Data ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "142 Data PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "201 ELL/READING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "201 ELL/READING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "205 & 207 3RD CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "205 & 207 3RD CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "209 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "209 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "211 & 213 4TH CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "211 & 213 4TH CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "216 COPY ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "216 COPY PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "218 OFF ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "218 OFF PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "210 & 212 4TH CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "210 & 212 4TH CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "208 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "208 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "204 & 206 3RD CLASS ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "204 & 206 3RD CLASS PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "200 RESOURCE ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "200 RESOURCE PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2C-1 & 3 CORR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "2C-1 & 3 CORR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "219 DATA ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "219 DATA PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1V-1 & 2 VEST ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1V-1 & 2 VEST PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "150 EXT STOR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S1-1 STAIR 1 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "112A WATER ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "ELEV ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "122 ELEC ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S2-1 STAIR 2 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "111A STOR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "124 RECEIVING ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "150 EXT STOR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S1-1 STAIR 1 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "112A WATER PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "ELEV PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "122 ELEC PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S2-1 STAIR 2 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "111A STOR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "124 RECEIVING PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1-V4 Vest ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "137b Exit ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "136 Stor ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "129 Stor ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "1-V4 Vest PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "137b Exit PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "136 Stor PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "129 Stor PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S2-2 STAIR 2 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "214 MECH ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "ELEV 02 ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S1-2 STAIR ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S2-2 STAIR 2 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "214 MECH PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "ELEV 02 PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "S1-2 STAIR PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "126 KITCHEN ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "126 KITCHEN PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "127 cafeteria ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + }, + "127 cafeteria PLNM ZN": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Hourly heating design day infiltration schedule must exist." + } + }, + "19-24": { + "VRF-1-14 & 15": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-47": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-3 & 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-5 & 6": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-7 to 10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-12 & 13": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-46": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-45": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-44": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-27 & 28": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-29 & 30": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-31": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-32 & 33": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-34 & 35": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-36 & 37": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-38": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-39 & 40": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-41": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-42": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "RTU-2 CAF\u00c9 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "4501.687389095663", + "unit": "cfm" + } + ], + "messages": "" + }, + "SA-1-S 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "RTU-1-GYM": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "1801.6763323961495", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-16 TO 19": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-20 & 21": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-22 & 23": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-24-25": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-26B": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-26A": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "SA-2-S 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-3 & 4": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-5": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-6 & 7": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-9": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-10": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-11 & 12": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-13": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-14 & 15": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-2-16": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "SA-1-S 02": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "10004.0146484375", + "unit": "cfm" + } + ], + "messages": "" + }, + "DOAS 2": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "6002.4091796875", + "unit": "cfm" + } + ], + "messages": "" + }, + "VRF-1-43": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "AC-1-1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "AC-2-1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "SA-2-S 01": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CYCLING" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_p", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_p", + "value": "27.080377345230318", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-25": { + "BL SYS 5 FLOOR 1": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "12493.952364978846", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "3967.898877883272", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "29.665386105945345", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "320.24794179298624", + "unit": "cfm" + } + ], + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "3657.737887446332", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "13.786834178929553", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "35.165982550946865", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "16.873335018041303", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "0.0", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "22.706004285632503", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "29.13282430349193", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "11.174634540406544", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "62.46002047485581", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "22.209848856946792", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "10.838191224869888", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "27.587953354172782", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "31.829722631736786", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "35.30812364252233", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "41.61651626223011", + "unit": "cfm" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_occupied_b", + "value": "CONTINUOUS" + }, + { + "variable": "minimum_outdoor_airflow_b", + "value": "39.42260110069424", + "unit": "cfm" + } + ], + "messages": "" + } + }, + "19-26": { + "VRF-1-14 & 15": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-47": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-3 & 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-5 & 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-7 to 10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-12 & 13": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-46": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-45": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-44": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-27 & 28": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-29 & 30": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-31": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-32 & 33": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-34 & 35": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-36 & 37": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-38": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-39 & 40": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-41": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-42": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU-2 CAF\u00c9 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-1-S 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU-1-GYM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-16 TO 19": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-20 & 21": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-22 & 23": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-24-25": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-26B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-26A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-2-S 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-3 & 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-6 & 7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-9": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-11 & 12": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-13": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-14 & 15": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-16": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-1-S 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-43": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AC-1-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AC-2-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-2-S 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-27": { + "BL SYS 5 FLOOR 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-28": { + "VRF-1-14 & 15": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-47": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-3 & 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-5 & 6": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-7 to 10": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-12 & 13": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-46": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-45": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-44": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-27 & 28": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-29 & 30": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-31": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-32 & 33": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-34 & 35": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-36 & 37": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-38": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-39 & 40": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-41": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-42": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "RTU-2 CAF\u00c9 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "SA-1-S 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "RTU-1-GYM": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-16 TO 19": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-20 & 21": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-22 & 23": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-24-25": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-26B": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-1-26A": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "SA-2-S 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-2": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-3 & 4": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-5": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-6 & 7": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-9": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-10": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-11 & 12": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-13": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-14 & 15": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "VRF-2-16": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "SA-1-S 02": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "DOAS 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "FanSystem:DOAS 1 FanSys is missing operation_during_unoccupied" + }, + "DOAS 2": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "FanSystem:DOAS 2 FanSys is missing operation_during_unoccupied" + }, + "VRF-1-43": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "AC-1-1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "AC-2-1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "SA-2-S 01": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_p", + "value": "KEEP_OFF" + } + ], + "messages": "" + } + }, + "19-29": { + "BL SYS 5 FLOOR 1": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "FAILED", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "KEEP_OFF" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "PASS", + "calculated_values": [ + { + "variable": "operation_during_unoccupied_b", + "value": "CYCLING" + } + ], + "messages": "" + } + }, + "19-30": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "19-31": { + "VRF-1-14 & 15": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-47": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-3 & 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-5 & 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-7 to 10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-12 & 13": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-46": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-45": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-44": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-27 & 28": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-29 & 30": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-31": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-32 & 33": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-34 & 35": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-36 & 37": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-38": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-39 & 40": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-41": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-42": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU-2 CAF\u00c9 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-1-S 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU-1-GYM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-16 TO 19": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-20 & 21": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-22 & 23": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-24-25": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-26B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-26A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-2-S 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-3 & 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-6 & 7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-9": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-11 & 12": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-13": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-14 & 15": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-16": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-1-S 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-43": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AC-1-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AC-2-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-2-S 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-32": { + "BL SYS 5 FLOOR 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-33": { + "VRF-1-14 & 15": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-47": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-3 & 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-5 & 6": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-7 to 10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-12 & 13": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-46": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-45": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-44": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-27 & 28": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-29 & 30": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-31": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-32 & 33": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-34 & 35": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-36 & 37": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-38": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-39 & 40": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-41": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-42": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU-2 CAF\u00c9 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-1-S 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "RTU-1-GYM": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-16 TO 19": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-20 & 21": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-22 & 23": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-24-25": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-26B": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-26A": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-2-S 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-3 & 4": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-6 & 7": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-9": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-10": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-11 & 12": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-13": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-14 & 15": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-2-16": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-1-S 02": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "DOAS 2": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "VRF-1-43": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AC-1-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "AC-2-1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "SA-2-S 01": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-34": { + "BL SYS 5 FLOOR 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-35": { + "BL SYS 5 FLOOR 1": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL Sys 5 2nd flr": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "BL SYS 3 Cafe": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "MISSING_PROPOSED" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-36": { + "BL SYS 5 FLOOR 1": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL Sys 5 2nd flr": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT)": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 KIT": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "BL SYS 3 Cafe": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 150 EXT STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-1 STAIR 1 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 112A WATER ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - ELEV ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 122 ELEC ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-1 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 111A STOR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 124 RECEIVING ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 1-V4 Vest ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 137b Exit ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 136 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 129 Stor ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S2-2 STAIR 2 ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - 214 MECH ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + }, + "S2 Sys (UHT) - S1-2 STAIR ZN": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "19-37": { + "Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": [ + { + "variable": "heating_design_day_type_b", + "value": "None" + }, + { + "variable": "cooling_design_day_type_b", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_b", + "value": "None" + }, + { + "variable": "heating_design_day_type_p", + "value": "None" + }, + { + "variable": "cooling_design_day_type_p", + "value": "None" + }, + { + "variable": "evaporation_wet_bulb_design_day_type_p", + "value": "None" + } + ], + "messages": "" + } + }, + "21-1": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-1 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-2": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 21-2 Not Applicable - the proposed is not modeled with Purchased Hot Water or Steam" + } + }, + "21-3": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-4": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-5": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-6": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-7": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-8": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "terminal:148 KINDERGARTEN PLNM ZN MainTerminal is missing heating_from_loop" + } + }, + "21-9": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-10": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-11": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-12": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-13": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-14": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-15": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "21-16": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-17": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "21-18": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-1": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-2": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-3": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-4": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-5": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-6": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-7": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-8": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-9": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-10": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-11": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-12": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-13": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-14": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-15": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-16": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-17": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-18": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-19": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-20": { + "Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-21": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-22": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-23": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-24": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-25": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-26": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-27": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-28": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Not Applicable" + } + }, + "22-29": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-30": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-31": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-32": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-33": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-34": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-35": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-35 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-36": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "22-37": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-37 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-38": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-38 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-39": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "Rule 22-39 Not Applicable - the baseline is not modeled with Purchased Chilled Water" + } + }, + "22-40": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "22-41": { + "[BL] Sample 5": { + "outcome": "NOT_APPLICABLE", + "calculated_values": "", + "messages": "" + } + }, + "23-1": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-2": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-3": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-4": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-5": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-6": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-7": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-8": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-9": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-10": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-11": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-12": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-13": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-14": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-15": { + "[PR] Sample 5 - 17 - Proposed": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-16": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + }, + "23-17": { + "[BL] Sample 5": { + "outcome": "UNDETERMINED", + "calculated_values": "", + "messages": "Error: HVAC BL SYS 5 FLOOR 1 does not match any baseline system type." + } + } +} \ No newline at end of file diff --git a/test/integrated_tests/Sample 5/tmpleypuwa5.html b/test/integrated_tests/Sample 5/tmpleypuwa5.html new file mode 100644 index 0000000000..5c9e171e0d --- /dev/null +++ b/test/integrated_tests/Sample 5/tmpleypuwa5.html @@ -0,0 +1,22 @@ + + + + + + +
+ + + + + + + + \ No newline at end of file diff --git a/test/integrated_tests/run_integration_tests.py b/test/integrated_tests/run_integration_tests.py new file mode 100644 index 0000000000..4d6d759e34 --- /dev/null +++ b/test/integrated_tests/run_integration_tests.py @@ -0,0 +1,237 @@ +from pathlib import Path +import zipfile +import json + +from rct229.rule_engine.rulesets import RuleSet +from rct229.schema.schema_store import SchemaStore +from rct229.schema.schema_enums import SchemaEnums +from rct229.rule_engine.engine import evaluate_all_rules +from rct229.reports import reports as rct_report + +INTEGRATED_TEST_DIR = Path(__file__).resolve().parent + + +def extract_rpd_from_zip(zip_path: Path) -> Path: + """ + Extract the JSON RPD file from a ZIP archive and return the extracted file path. + + Parameters + ---------- + zip_path: Path + Path to the ZIP file containing the RPD JSON. + + Returns + ------- + Path + Path to the extracted RPD JSON file. + """ + extract_dir = zip_path.parent + extract_dir.mkdir(exist_ok=True) + + with zipfile.ZipFile(zip_path, "r") as zip_ref: + zip_ref.extractall(extract_dir) + + # Find the first .json file in the extracted directory + json_files = list(extract_dir.rglob("*.rpd")) + if not json_files: + raise FileNotFoundError(f"No RPD file found in archive: {zip_path}") + return json_files[0] + + +def evaluate(rpds, ruleset, reports, reports_directory: Path): + if ruleset == RuleSet.ASHRAE9012019_RULESET: + SchemaStore.set_ruleset(RuleSet.ASHRAE9012019_RULESET) + SchemaEnums.update_schema_enum() + print("Test implementation of rule engine for ASHRAE Std 229 RCT.\n") + + available_report_modules = rct_report.__getreports__() + available_report_dict = {key: value for key, value in available_report_modules} + available_report_str = list(available_report_dict.keys()) + + for report_type in reports: + if report_type not in available_report_dict: + raise ValueError( + f"Cannot find matching report type for {report_type}. " + f"Available ones are {available_report_str}." + ) + + report = evaluate_all_rules(rpds) + print(f"Saving reports to: {reports_directory}...") + for report_type in reports: + report_module = available_report_dict[report_type]() + report_module.generate(report, reports_directory) + + +def run_sample_evaluation(rpd_file_path: Path, ruleset: str): + """ + Run a single integration test on a given RPD file (ZIP) and ruleset. + """ + if rpd_file_path.suffix == ".zip": + rpd_json_path = extract_rpd_from_zip(rpd_file_path) + else: + rpd_json_path = rpd_file_path + + evaluate( + [str(rpd_json_path)], + ruleset, + reports=["ASHRAE9012019DetailReport"], + reports_directory=rpd_file_path.parent, + ) + + +def run_all_sample_evaluations(): + """ + Run sample integration tests on predefined RPD files and rulesets. + """ + sample_tests = [ + { + "rpd_file_path": INTEGRATED_TEST_DIR / f"Sample {i}" / f"Sample {i}.zip", + "ruleset": RuleSet.ASHRAE9012019_RULESET, + } + for i in range(1, 6) + ] + + for test in sample_tests: + run_sample_evaluation(test["rpd_file_path"], test["ruleset"]) + + +def run_sample_number_evaluation(sample_number: int, ruleset: str): + """ + Evaluate a specific sample RPD file (ZIP) by its sample number. + """ + rpd_file_path = ( + INTEGRATED_TEST_DIR / f"Sample {sample_number}" / f"Sample {sample_number}.zip" + ) + run_sample_evaluation(rpd_file_path, ruleset) + + +def verify_report_alignment(): + """ + Check that each Sample directory contains the expected report and outcomes. + """ + for sample_dir in INTEGRATED_TEST_DIR.iterdir(): + if sample_dir.is_dir() and sample_dir.name.startswith("Sample"): + print(f"Verifying report alignment for {sample_dir.name}...") + report_file = sample_dir / "ASHRAE9012019DetailReport.json" + expected_outcome_file = sample_dir / "expected_outcomes.json" + + if not report_file.exists(): + print( + f"Report file not found for {sample_dir.name}, skipping alignment check." + ) + continue + if not expected_outcome_file.exists(): + print( + f"Expected outcomes file not found for {sample_dir.name}, skipping alignment check." + ) + continue + + with report_file.open( + "r", encoding="utf-8" + ) as rf, expected_outcome_file.open("r", encoding="utf-8") as ef: + report_data = json.load(rf) + expected_data = json.load(ef) + + for rule in report_data.get("rules", []): + rule_id = rule.get("rule_id") + if rule_id not in expected_data: + raise ValueError( + f"Rule ID {rule_id} found in report but not in expected outcomes for {sample_dir.name}." + ) + + expected_rule_evals = expected_data[rule_id] + + for evaluation in rule.get("evaluations", []): + data_group_id = evaluation.get("data_group_id") + if data_group_id not in expected_rule_evals: + print( + f"Data Group ID {data_group_id} (Rule ID {rule_id} found " + f"in report but not in expected outcomes for {sample_dir.name})." + ) + continue + + expected_eval = expected_rule_evals[data_group_id] + + # Compare outcome + if evaluation.get("outcome") != expected_eval.get("outcome"): + print( + f"Outcome mismatch in {sample_dir.name} (Rule ID: {rule_id}, " + f"Data Group ID: {data_group_id})." + ) + + # Compare calculated values + reported_calc_vals = evaluation.get("calculated_values", "") + expected_calc_vals = expected_eval.get("calculated_values", "") + + # Case: Both empty → OK + if (reported_calc_vals == "" or reported_calc_vals == []) and ( + expected_calc_vals == "" or expected_calc_vals == [] + ): + pass + + # Case: One empty but not the other → mismatch + elif (reported_calc_vals == "" and expected_calc_vals != "") or ( + expected_calc_vals == "" and reported_calc_vals != "" + ): + print( + f"Calculated values presence mismatch in {sample_dir.name} " + f"(Rule ID: {rule_id}, Data Group ID: {data_group_id}). " + f"Expected: {expected_calc_vals} | Got: {reported_calc_vals}" + ) + + else: + # Both should be lists of dicts + if not isinstance(reported_calc_vals, list) or not isinstance( + expected_calc_vals, list + ): + print( + f"Invalid calculated_values format in {sample_dir.name} " + f"(Rule ID: {rule_id}, Data Group ID: {data_group_id})." + ) + continue + + # Convert lists to dicts keyed by "variable" + reported_dict = { + cv["variable"]: cv["value"] + for cv in reported_calc_vals + if "variable" in cv + } + expected_dict = { + cv["variable"]: cv["value"] + for cv in expected_calc_vals + if "variable" in cv + } + + # Compare only expected variables + for variable, expected_value in expected_dict.items(): + + if variable not in reported_dict: + print( + f"Missing calculated variable '{variable}' in {sample_dir.name} " + f"(Rule ID: {rule_id}, Data Group ID: {data_group_id}) ." + ) + continue + + reported_value = reported_dict[variable] + if reported_value != expected_value: + print( + f"Calculated value mismatch in {sample_dir.name} " + f"(Rule {rule_id}, Data Group {data_group_id}, Variable '{variable}') " + f"Expected: {expected_value} | Got: {reported_value}" + ) + + # Compare messages + if evaluation.get("messages") != expected_eval.get("messages"): + print( + f"Messages mismatch in {sample_dir.name} for Rule ID: {rule_id}, " + f"Data Group ID: {data_group_id}." + ) + + +if __name__ == "__main__": + # Example usage: + # run_sample_number_evaluation(1, RuleSet.ASHRAE9012019_RULESET) + + # run_all_sample_evaluations() + + verify_report_alignment()